From e23ae49b71c69fe511e2aa6a125e520d3012077c Mon Sep 17 00:00:00 2001 From: stuebinm Date: Fri, 11 Feb 2022 23:17:34 +0100 Subject: reduce boot messages in greetd (unfortunately there's still some left …) --- common/desktop.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'common/desktop.nix') 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; -- cgit v1.2.3