sbc-deploys/modules/server/default.nix

19 lines
279 B
Nix
Raw Normal View History

2023-06-07 23:10:43 +00:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ bottom cryptsetup git htop screen ];
time.timeZone = "UTC";
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
};
2024-03-07 19:52:06 +00:00
zramSwap = {
enable = true;
memoryPercent = 75;
};
2023-06-07 23:10:43 +00:00
}