aboutsummaryrefslogtreecommitdiffhomepage
path: root/nixos.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos.nix')
-rw-r--r--nixos.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/nixos.nix b/nixos.nix
index 62e981f6..e2382bcb 100644
--- a/nixos.nix
+++ b/nixos.nix
@@ -121,7 +121,7 @@ in
direct_wayland = app.insecureWayland;
username = getsubname fid app.identity;
- data = getsubhome fid app.identity;
+ home = getsubhome fid app.identity;
inherit (cfg) shell;
inherit (app) identity groups enablements;
@@ -210,7 +210,15 @@ in
linkname = config.systemd.tmpfiles.settings.graphics-driver."/run/opengl-driver-32"."L+".argument;
}
]
- );
+ )
+ ++ [
+ {
+ type = "bind";
+ src = getsubhome fid app.identity;
+ write = true;
+ ensure = true;
+ }
+ ];
};
};