From 7bff22ec396d52e201d834cd1d60a7fb829e7f73 Mon Sep 17 00:00:00 2001 From: blake Date: Sat, 4 Oct 2025 11:10:13 -0500 Subject: [PATCH] removed cockpit --- hosts/snowbelle/configuration.nix | 2 -- modules/homelab/cockpit.nix | 16 ---------------- modules/homelab/nfs.nix | 1 + 3 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 modules/homelab/cockpit.nix 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)