aboutsummaryrefslogtreecommitdiff
path: root/profiles/nas.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/nas.nix')
-rw-r--r--profiles/nas.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/profiles/nas.nix b/profiles/nas.nix
new file mode 100644
index 0000000..9c25c22
--- /dev/null
+++ b/profiles/nas.nix
@@ -0,0 +1,14 @@
+{ config, pkgs, ... }:
+{
+ imports = [
+ ./server.nix
+ ./btrfs.nix
+ ];
+
+ users.groups.nas.gid = 5000;
+ users.users.nas = {
+ uid = 5000;
+ group = "nas";
+ isSystemUser = true;
+ };
+}