From b86f21d565d51bdab284e8cdb73dec8335ed54a1 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Thu, 3 Aug 2023 08:15:38 +0200 Subject: [PATCH 1/3] dregil: Add german to list of locales Also set TIME_STYLE to iso. --- hosts/dregil/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 6a2defc..7761133 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -35,6 +35,11 @@ in { # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + i18n = { + extraLocaleSettings = { TIME_STYLE = "iso"; }; + supportedLocales = [ "C.UTF-8" "en_US.UTF-8" "de_DE.UTF8" ]; + }; + console = { font = "Lat2-Terminus16"; #useXkbConfig = true; # use xkbOptions in tty. From f911d46279e9bf196a939eb277e49337f7663473 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Thu, 3 Aug 2023 08:17:03 +0200 Subject: [PATCH 2/3] dregil: Use a fancier greeter for lightdm --- hosts/dregil/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 7761133..849449f 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -58,7 +58,10 @@ in { videoDrivers = [ "nvidia" ]; # "modesetting" ]; - displayManager.lightdm = { enable = true; }; + displayManager.lightdm = { + enable = true; + greeters.slick.enable = true; + }; desktopManager.xfce.enable = true; desktopManager.plasma5.enable = true; From 160313f4f51b48d56171c4d1894dee23c17f6974 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Thu, 3 Aug 2023 08:17:45 +0200 Subject: [PATCH 3/3] dregil: Switch from plasma to gnome --- hosts/dregil/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 849449f..93a7b31 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -64,7 +64,7 @@ in { }; desktopManager.xfce.enable = true; - desktopManager.plasma5.enable = true; + desktopManager.gnome.enable = true; # Enable touchpad support (enabled default in most desktopManager). libinput = {