aboutsummaryrefslogtreecommitdiff
path: root/modules/myids.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-05-10 14:56:43 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-05-10 14:56:43 +0200
commit1a7188052f235fb632700478fad0108e4306107d (patch)
tree046b43c711a161190e99953c709cd69aaa49b724 /modules/myids.nix
parentd42bbbe6f510fce233ecb66d44d205761390b56e (diff)
downloadNix-1a7188052f235fb632700478fad0108e4306107d.tar.gz
Nix-1a7188052f235fb632700478fad0108e4306107d.tar.zst
Nix-1a7188052f235fb632700478fad0108e4306107d.zip
Move secrets module outside of nixops
Diffstat (limited to 'modules/myids.nix')
-rw-r--r--modules/myids.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/myids.nix b/modules/myids.nix
index bd6caf3..8f74425 100644
--- a/modules/myids.nix
+++ b/modules/myids.nix
@@ -1,12 +1,15 @@
1{ ... }: 1{ ... }:
2{ 2{
3 # Check that there is no clash with nixos/modules/misc/ids.nix
3 config = { 4 config = {
4 ids.uids = { 5 ids.uids = {
5 peertube = 394; 6 peertube = 394;
7 nullmailer = 396;
6 mediagoblin = 397; 8 mediagoblin = 397;
7 }; 9 };
8 ids.gids = { 10 ids.gids = {
9 peertube = 394; 11 peertube = 394;
12 nullmailer = 396;
10 mediagoblin = 397; 13 mediagoblin = 397;
11 }; 14 };
12 }; 15 };