From b5d4152d843c4a52176c62431c2bf7b3dfdc00cb Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 22 Apr 2023 18:25:24 +0200 Subject: Feat(system/locale): Modularize keyMap setting --- hosts/apzu/default.nix | 9 ++------- hosts/lahmu/default.nix | 2 ++ hosts/mammun/default.nix | 2 ++ hosts/tiamat/default.nix | 14 ++++++-------- 4 files changed, 12 insertions(+), 15 deletions(-) (limited to 'hosts') diff --git a/hosts/apzu/default.nix b/hosts/apzu/default.nix index 2a21ffb9..3b787413 100644 --- a/hosts/apzu/default.nix +++ b/hosts/apzu/default.nix @@ -1,11 +1,5 @@ # vim: ts=2 -{ - config, - lib, - nixpkgs, - home-manager, - ... -}: { +{...}: { imports = [ ./hardware ./networking.nix @@ -14,6 +8,7 @@ ]; soispha = { + locale.enable = true; fs.backup = { enable = true; backupDiskUuid = "d1c6e0f6-1837-40fd-bb29-251d5ea0ddb0"; diff --git a/hosts/lahmu/default.nix b/hosts/lahmu/default.nix index a3274958..7a7aa9a4 100644 --- a/hosts/lahmu/default.nix +++ b/hosts/lahmu/default.nix @@ -14,6 +14,8 @@ ]; soispha = { + + locale.enable = true; users = { # enable = true; hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6"; diff --git a/hosts/mammun/default.nix b/hosts/mammun/default.nix index 0252e8e8..4bf0c975 100644 --- a/hosts/mammun/default.nix +++ b/hosts/mammun/default.nix @@ -14,6 +14,8 @@ ../../system ]; soispha = { + + locale.enable = true; users = { hashedPassword = "$y$jDT$O/42/7REOL50onRYcTV9R1$Ot3bPAh2raHmPN3yScP4wsJRtNqrMtTBzOq9oRJeRA0"; }; diff --git a/hosts/tiamat/default.nix b/hosts/tiamat/default.nix index 2a21ffb9..7d568053 100644 --- a/hosts/tiamat/default.nix +++ b/hosts/tiamat/default.nix @@ -1,11 +1,5 @@ # vim: ts=2 -{ - config, - lib, - nixpkgs, - home-manager, - ... -}: { +{...}: { imports = [ ./hardware ./networking.nix @@ -14,12 +8,16 @@ ]; soispha = { + locale = { + enable = true; + keyMap = "us"; + }; fs.backup = { enable = true; backupDiskUuid = "d1c6e0f6-1837-40fd-bb29-251d5ea0ddb0"; }; users = { - hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6"; # TODO change this to a unique one + hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6"; }; }; -- cgit 1.4.1