diff --git a/nixos/machines/orbi/media-nextcloud.nix b/nixos/machines/orbi/media-nextcloud.nix index 8c838c2..c1fed15 100644 --- a/nixos/machines/orbi/media-nextcloud.nix +++ b/nixos/machines/orbi/media-nextcloud.nix @@ -53,15 +53,6 @@ in clanCore.facts.services.nextcloud_root = factsGenerator.password { service = "nextcloud"; name = "root"; }; clanCore.facts.services.nextcloud_database = factsGenerator.password { service = "nextcloud"; name = "database"; }; - # todo : remove - users.users.nextcloud = { - isSystemUser = true; - uid = nextcloudUid; - group = "nextcloud"; - }; - users.groups.nextcloud.gid = nextcloudGid; - - # Container Setup # =============== # @@ -86,7 +77,6 @@ in privateNetwork = false; autoStart = true; - config = { config, lib, ... }: { nixpkgs.pkgs = pkgs; imports = [ ../../components/monitor/container.nix ]; @@ -114,7 +104,6 @@ in }; }; - users.users.nextcloud.uid = nextcloudUid; services.nginx = { diff --git a/nixos/machines/orbi/social-matrix-terranix.nix b/nixos/machines/orbi/social-matrix-terranix.nix index 73604bc..24daa81 100644 --- a/nixos/machines/orbi/social-matrix-terranix.nix +++ b/nixos/machines/orbi/social-matrix-terranix.nix @@ -52,14 +52,6 @@ in environment.systemPackages = [ matrix_create_user ]; - # todo : remove me - users.users.matrix-synapse = { - isSystemUser = true; - uid = config.ids.uids.matrix-synapse; - group = "matrix-synapse"; - }; - users.groups.matrix-synapse.gid = config.ids.gids.matrix-synapse; - containers."matrix-${name}" = { autoStart = true; privateNetwork = false;