diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-04-11 19:08:13 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-04-11 19:08:13 -0500 |
| commit | 174c414636b86eccc78b1e319794630eeccf13e3 (patch) | |
| tree | 242276c948015d03a12d8cf3db3c88798cf09cc9 /hosts | |
| parent | 9a40ac45f0e572a41f2f8f3d2f18c50338c9ddb2 (diff) | |
| download | nixos-174c414636b86eccc78b1e319794630eeccf13e3.tar.xz nixos-174c414636b86eccc78b1e319794630eeccf13e3.zip | |
immich not enabled by default
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/poweredge/configuration.nix | 26 | ||||
| -rw-r--r-- | hosts/poweredge/fileshares.nix | 3 |
2 files changed, 16 insertions, 13 deletions
diff --git a/hosts/poweredge/configuration.nix b/hosts/poweredge/configuration.nix index e2798bd..ef99add 100644 --- a/hosts/poweredge/configuration.nix +++ b/hosts/poweredge/configuration.nix @@ -25,21 +25,27 @@ }; }; + # Import zfs pools + boot.zfs.extraPools = [ "ingens" "memoria" ]; # Enable smartd services.smartd.enable = true; # TODO move to archetype # Enable web services - # services = { - # _cgit = { - # enable = true; - # hostAddress = "192.168.1.10"; - # localAddress = "192.168.1.11"; - # rootTitle = "PowerEdge local cgit"; - # # TODO add authorizedKeys - # }; - # }; - # + services = { + #_cgit = { + # enable = true; + # hostAddress = "192.168.1.10"; + # localAddress = "192.168.1.11"; + # rootTitle = "PowerEdge local cgit"; + # # TODO add authorizedKeys + #}; + _immich = { + enable = true; + mediaLocationHostPath = "/media/ingens/immich"; + }; + }; + #services._klipper.enable = true; # Enable user timmy diff --git a/hosts/poweredge/fileshares.nix b/hosts/poweredge/fileshares.nix index 90b738c..8c3c9a0 100644 --- a/hosts/poweredge/fileshares.nix +++ b/hosts/poweredge/fileshares.nix @@ -1,7 +1,4 @@ { - # Import zfs pools - boot.zfs.extraPools = [ "ingens" "memoria" ]; - services._fileShares.enable = true; services._fileShares.shares = { PS2 = { |
