diff options
author | stuebinm | 2022-02-11 23:17:34 +0100 |
---|---|---|
committer | stuebinm | 2022-02-11 23:17:34 +0100 |
commit | e23ae49b71c69fe511e2aa6a125e520d3012077c (patch) | |
tree | 8cf80e052ece91c4511224f75abc22df9c4339cf /common | |
parent | 9c0916f236076d5dda2b23f6ac6064924602d37d (diff) |
reduce boot messages in greetd
(unfortunately there's still some left …)
Diffstat (limited to 'common')
-rw-r--r-- | common/desktop.nix | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/common/desktop.nix b/common/desktop.nix index ee1f044..1816be9 100644 --- a/common/desktop.nix +++ b/common/desktop.nix @@ -12,8 +12,6 @@ experimental-features = nix-command flakes ''; - virtualisation.podman.enable = true; - # Enable CUPS to print documents. services.printing = { enable = true; @@ -56,11 +54,21 @@ services.greetd = { enable = true; - settings.default_session = { + settings = { + default_session = { command = "${pkgs.greetd.tuigreet}/bin/tuigreet -tr --asterisks --cmd 'hikari -c ~/hikari.conf'"; user = "stuebinm"; + }; + terminal.vt = 2; }; }; + + systemd.services.greetd.unitConfig.Conflicts = lib.mkForce ["getty@tty2.service"]; + systemd.services.greetd.serviceConfig.Type = lib.mkForce "idle"; + systemd.services.greetd.unitConfig.after = lib.mkForce [ "multi-user.target" ]; + + #boot.kernelParams = [ "console=tty1" ]; + hardware.opengl.enable = true; fonts.enableDefaultFonts = true; programs.xwayland.enable = false; |