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