From 14654384b16139a56e2d089a40726963a345f11d Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 29 Aug 2022 10:55:28 -0600 Subject: [PATCH] stan: add hosts entries, extend user to userBase --- hosts/stan/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/stan/default.nix b/hosts/stan/default.nix index 6aac1a9..72bd6c2 100644 --- a/hosts/stan/default.nix +++ b/hosts/stan/default.nix @@ -34,6 +34,13 @@ in { preDNS.enable = false; networking = { hostName = "stan"; + + hosts = { + "172.16.30.253" = [ "proxmox-02.vm.calyptix.local" ]; + "127.0.0.1" = [ "borg.calyptix.dev" "localhost" ]; + "192.168.122.133" = [ "arst.arst" "vm" ]; + }; + networkmanager.enable = true; firewall = { allowedTCPPorts = [ 22 ]; @@ -72,7 +79,7 @@ in { shell = pkgs.zsh; extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; packages = with pkgs; [ ]; - }; + } // userBase; nixpkgs.config.allowUnfree = true;