diff options
Diffstat (limited to '')
| -rw-r--r-- | profiles/defaults.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/profiles/defaults.nix b/profiles/defaults.nix index 54e9981..8396599 100644 --- a/profiles/defaults.nix +++ b/profiles/defaults.nix @@ -8,6 +8,13 @@ { boot = { kernelPackages = pkgs.linuxPackages_latest; + plymouth.enable = true; + kernelParams = [ + "quiet" + "splash" + "rd.systemd.show_status=false" + "boot.shell_on_fail" + ]; kernel.sysctl = { "net.ipv4.tcp_congestion_control" = "bbr"; "net.ipv4.tcp_ecn" = 1; @@ -16,6 +23,13 @@ }; }; + console = { + earlySetup = true; + font = "ter-132n"; + packages = with pkgs; [ terminus_font ]; + keyMap = "us"; + }; + nix = { gc = { automatic = true; |
