diff options
| author | caley <u65487754@gmail.com> | 2026-05-29 17:25:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-29 17:25:31 +0200 |
| commit | 5ffa053678636cc167e5d57893d0b2dadd8bff08 (patch) | |
| tree | 7fa2e608df7db2d2c4bf2db9c5d9e5b803be8c2b | |
| parent | 6c4a8a61866116a85900780d4adda4279631c92c (diff) | |
Enable zram swap and replace emacs with neovim
| -rw-r--r-- | nixos/configuration.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 9b1b6a2..ff558f1 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -15,6 +15,11 @@ }; boot.kernelPackages = pkgs.linuxPackages_latest; + zramSwap = { + enable = true; + memoryPercent = 25; + }; + services.getty.autologinUser = "silly"; networking.hostName = "cat"; @@ -81,7 +86,7 @@ environment.systemPackages = with pkgs; [ git kitty wl-clipboard - emacs + neovim awww dunst libnotify |
