self-hosting/environment.nix
Paul-Henri Froidmont b1be7728c5
Add git
2023-12-27 21:32:52 +01:00

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;
}