diff options
author | Soispha <soispha@vhack.eu> | 2023-10-04 07:29:30 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-16 17:19:52 +0200 |
commit | 257f96526d8d2e3c4b6a4d38e8ec384d4caeae43 (patch) | |
tree | 50693b984abe752fa6dcb5f59466a83f139e232d | |
parent | chore(version): v0.16.0 (diff) | |
download | nixos-server-257f96526d8d2e3c4b6a4d38e8ec384d4caeae43.tar.gz nixos-server-257f96526d8d2e3c4b6a4d38e8ec384d4caeae43.zip |
fix(system/services/taskserver): Hide organisations
Diffstat (limited to '')
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | system/services/taskserver/default.nix | 13 | ||||
-rw-r--r-- | system/services/taskserver/organisations.nix | bin | 0 -> 179 bytes |
3 files changed, 2 insertions, 12 deletions
diff --git a/.gitattributes b/.gitattributes index b9e9c86..afc2bcc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,3 @@ system/services/mail/users.nix filter=git-crypt diff=git-crypt system/services/nginx/hosts.nix filter=git-crypt diff=git-crypt +system/services/taskserver/organisations.nix filter=git-crypt diff=git-crypt diff --git a/system/services/taskserver/default.nix b/system/services/taskserver/default.nix index 517da5d..1b0d29d 100644 --- a/system/services/taskserver/default.nix +++ b/system/services/taskserver/default.nix @@ -10,18 +10,7 @@ }; bits = 4096; }; - organisations = { - vhack = { - users = [ - "soispha" - ]; - }; - soispha = { - users = [ - "soispha" - ]; - }; - }; + organisations = import ./organisations.nix; trust = "strict"; openFirewall = true; fqdn = "taskserver.vhack.eu"; diff --git a/system/services/taskserver/organisations.nix b/system/services/taskserver/organisations.nix new file mode 100644 index 0000000..f5beebc --- /dev/null +++ b/system/services/taskserver/organisations.nix Binary files differ |