diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index 04c98ee..94a7261 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -29,8 +29,6 @@ programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; - - # package install list environment.systemPackages = with pkgs; [ vim diff --git a/modules/homelab/cockpit.nix b/modules/homelab/cockpit.nix deleted file mode 100644 index a95cbeb..0000000 --- a/modules/homelab/cockpit.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ config, pkgs, ... }: - -{ - services.cockpit = { - enable = true; - openFirewall = true; - port = 9090; - allowed-origins = [ "http://0.0.0.0:9090" "https://0.0.0.0:9090" "http://localhost:9090" ]; - settings = { - WebService = { - AllowUnencrypted = true; - }; - }; - }; -} - diff --git a/modules/homelab/nfs.nix b/modules/homelab/nfs.nix index 262273a..275abf9 100644 --- a/modules/homelab/nfs.nix +++ b/modules/homelab/nfs.nix @@ -1,5 +1,6 @@ { config, lib, pkgs, ... }: +# define nfs exports let nfsExports = '' /holocron/vault *(rw,sync,no_subtree_check,no_root_squash)