diff --git a/hosts/dnsc-server/default.nix b/hosts/dnsc-server/default.nix index 88f3a2d..7771054 100644 --- a/hosts/dnsc-server/default.nix +++ b/hosts/dnsc-server/default.nix @@ -17,6 +17,7 @@ ../../modules/jellyfin ../../modules/actual-server ../../modules/immich + ../../modules/cockpit ]; # General @@ -113,6 +114,7 @@ restic mkcert actual-server + cockpit ]; # GnuPG diff --git a/modules/cockpit/default.nix b/modules/cockpit/default.nix new file mode 100644 index 0000000..5dfd7ce --- /dev/null +++ b/modules/cockpit/default.nix @@ -0,0 +1,11 @@ +{ + services.cockpit = { + enable = true; + port = 9999; + settings = { + WebService = { + AllowUnencrypted = true; + }; + }; + }; +}