summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/users.nix8
-rw-r--r--data/aliases.nix2
2 files changed, 10 insertions, 0 deletions
diff --git a/config/users.nix b/config/users.nix
index aa52193..a1a4a15 100644
--- a/config/users.nix
+++ b/config/users.nix
@@ -22,11 +22,19 @@
uid = 502;
home = "/var/lib/systemhttpd";
};
+ linoquotes = {
+ name = "linoquotes";
+ group = "linoquotes";
+ createHome = true;
+ uid = 503;
+ home = "/var/lib/linoquotes";
+ };
};
extraGroups = {
fcgi = { name = "fcgi"; gid = 500; };
plugdev = { name = "plugdev"; gid = 501; };
systemhttpd = { name = "systemhttpd"; gid = 502; };
+ linoquotes = { name = "linoquotes"; gid = 503; };
};
};
}
diff --git a/data/aliases.nix b/data/aliases.nix
index 8427547..4ed0f1c 100644
--- a/data/aliases.nix
+++ b/data/aliases.nix
@@ -1,6 +1,7 @@
rec {
ip = {
shape = "10.0.20.15";
+ raigh = "raigh.orbekk.com";
};
services = {
hydra = { address = ip.shape; port = 11101; };
@@ -9,5 +10,6 @@ rec {
git = { address = ip.shape; port = 11103; };
fcgi = { address = ip.shape; port = 11104; };
systemhttpd = { address = ip.shape; port = 11105; };
+ linoquotes = { address = ip.raigh; port = 11106; };
};
}