This commit is contained in:
Tyler Beckman 2024-12-02 19:35:25 -07:00
parent 8fee70f405
commit 356f23541f
Signed by: Ty
GPG key ID: 2813440C772555A4
3 changed files with 12 additions and 4 deletions

View file

@ -1,9 +1,9 @@
{ ... }:
{
imports = [
./zsh.nix
./starship.nix
./konsole.nix
./btop.nix
./konsole.nix
./starship.nix
./zsh.nix
];
}

View file

@ -14,6 +14,7 @@
./nvidia.nix
./packages.nix
./sound.nix
./swap.nix
./users.nix
];
}
}

View file

@ -0,0 +1,7 @@
{ ... }:
{
zramSwap = {
enable = true;
algorithm = "zstd";
};
}