mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-24 21:26:59 +01:00
11 lines
253 B
Nix
11 lines
253 B
Nix
{ pkgs, nixpkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [ htop-vim nload tmux vim git ];
|
|
|
|
nix = { nixPath = [ "nixpkgs=${nixpkgs}" ]; };
|
|
|
|
services.nscd.enableNsncd = true;
|
|
|
|
services.fail2ban.enable = true;
|
|
|
|
zramSwap.enable = true;
|
|
}
|