diff options
Diffstat (limited to 'host/Rory-nginx/services/containers/draupnir-linux-mint/root.nix')
-rwxr-xr-x | host/Rory-nginx/services/containers/draupnir-linux-mint/root.nix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/host/Rory-nginx/services/containers/draupnir-linux-mint/root.nix b/host/Rory-nginx/services/containers/draupnir-linux-mint/root.nix new file mode 100755 index 0000000..cf6f8c0 --- /dev/null +++ b/host/Rory-nginx/services/containers/draupnir-linux-mint/root.nix @@ -0,0 +1,43 @@ +{ + config, + pkgs, + lib, + ... +}: + +{ + imports = [ + ./services/draupnir.nix + ]; + + environment.systemPackages = with pkgs; [ + neofetch + lnav + zsh + lsd + htop + btop + duf + kitty.terminfo + neovim + jq + yq + pv + dig + ]; + + environment.etc."resolv.conf".text = '' + nameserver 8.8.8.8 + nameserver 8.4.4.8 + nameserver 1.1.1.1 + nameserver 1.0.0.1 + ''; + + networking.hosts = { + "192.168.100.16" = [ "matrix.rory.gay" "rory.gay" ]; + }; + + networking.firewall = { + enable = true; + }; +} |