diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-30 10:17:09 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-30 10:27:12 +0100 |
commit | e03fef4ed0dfb7522d03fd7d6a6c07ff699bbf6f (patch) | |
tree | 38715650df41b5a48d12fad5704a67fcfabfdb17 /nixos/hosts/ev/default.nix | |
parent | d2d37440b5742bf0b4878ba6de2de1ed4abfc18a (diff) |
feat(ev): add enteente
Diffstat (limited to 'nixos/hosts/ev/default.nix')
-rw-r--r-- | nixos/hosts/ev/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/hosts/ev/default.nix b/nixos/hosts/ev/default.nix index e59ec01..ce7aace 100644 --- a/nixos/hosts/ev/default.nix +++ b/nixos/hosts/ev/default.nix @@ -9,14 +9,17 @@ imports = [ ./hardware-configuration.nix <top/profiles/server> + <top/shared/postgresql.nix> <top/shared/tailscale.nix> <top/shared/basics-physical.nix> <top/shared/vpn.nix> + ./ente.nix ./home-automation.nix ./kodi.nix ./torrent.nix ]; + ente.minioPort = 3200; home-automation.zigbee2mqttPort = 8080; torrent.qbittorrentWebUiPort = 7777; torrent.networkNamespace = "se"; @@ -36,6 +39,8 @@ }; }; + ente.minioDataDir = "/mnt/personal/ente-test"; # TODO: change to /mnt/personal/ente + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; |