diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-06 11:21:17 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-06 11:21:17 -0800 |
| commit | 5c576d59064cf2f7a6a4f2a8dee638aedd2c39da (patch) | |
| tree | f50d9c5b40ec939b96c78d2a708eb97369307bc6 | |
| parent | backup archives (diff) | |
| download | infra-5c576d59064cf2f7a6a4f2a8dee638aedd2c39da.tar.gz | |
| -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; |
