diff options
author | sefidel <contact@sefidel.net> | 2022-01-23 08:31:04 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-23 08:31:04 +0900 |
commit | 3c066770a90ca9b7baf6ff60635bc70d0107f9f1 (patch) | |
tree | bc834e7e94dfdc8163dd30a06ddd57e18123c29f /nixos/alpha | |
parent | dad620a1f6a006e7e23bbcf920c184ab6df119c2 (diff) | |
download | nixrc-3c066770a90ca9b7baf6ff60635bc70d0107f9f1.tar.gz nixrc-3c066770a90ca9b7baf6ff60635bc70d0107f9f1.zip |
nixos/alpha: grub - devices -> device, set console colors
Diffstat (limited to 'nixos/alpha')
-rw-r--r-- | nixos/alpha/configuration.nix | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix index 0701994..24da6c9 100644 --- a/nixos/alpha/configuration.nix +++ b/nixos/alpha/configuration.nix @@ -25,7 +25,7 @@ efiSupport = true; configurationLimit = 10; - devices = [ "nodev" ]; + device = "nodev"; useOSProber = true; # device = "/dev/disk/by-uuid/7905-2E41"; extraEntries = '' @@ -45,7 +45,25 @@ i18n.defaultLocale = "en_US.UTF-8"; - console.font = "CtrlD-16"; + console.font = "Cozette-13"; + console.colors = [ + "222329" + "b17f81" + "8aa387" + "d4ae80" + "84a0c6" + "a093c7" + "7aacaa" + "d0d0c7" + "36373d" + "c59395" + "9eb79b" + "e8c294" + "a2bee4" + "beb1e5" + "8ec0be" + "e4e4db" + ]; console.keyMap = "us"; time.timeZone = "Asia/Seoul"; |