aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-07-01 20:17:16 +0200
committerKarel Kočí <cynerd@email.cz>2022-07-01 20:17:16 +0200
commit1549260ee777d8d777495ddff21295f2cb87d209 (patch)
tree7533ca0c68f0658de3670303c55cb59dbd81ddde /nixos/modules
parent67a3c10e14b3da25798d4c62487e921759afd4ff (diff)
downloadnixos-personal-1549260ee777d8d777495ddff21295f2cb87d209.tar.gz
nixos-personal-1549260ee777d8d777495ddff21295f2cb87d209.tar.bz2
nixos-personal-1549260ee777d8d777495ddff21295f2cb87d209.zip
nixos: improve console and fix ridcully
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/generic.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/modules/generic.nix b/nixos/modules/generic.nix
index 34f952c..b8b2a6e 100644
--- a/nixos/modules/generic.nix
+++ b/nixos/modules/generic.nix
@@ -98,6 +98,17 @@ with lib;
time.timeZone = "Europe/Prague";
i18n.defaultLocale = "en_US.UTF-8";
+
+ console = {
+ colors = [
+ "2e3440" "3b4252" "434c5e" "4c566a" "d8dee9" "e5e9f0" "eceff4" "8fbcbb"
+ "88c0d0" "81a1c1" "5e81ac" "bf616a" "d08770" "ebcb8b" "a3be8c" "b48ead"
+ ];
+ earlySetup = true;
+ useXkbConfig = true;
+ };
+ services.xserver.xkbOptions = "grp:alt_shift_toggle,caps:escape";
+ services.gpm.enable = true;
};
}