summaryrefslogtreecommitdiff
path: root/nixos/modules/system/layout.nix
diff options
context:
space:
mode:
authorcaley <195605706+cqley@users.noreply.github.com>2026-08-06 18:15:18 +0200
committerGitHub <noreply@github.com>2026-08-06 18:15:18 +0200
commitb84f1c783492a44bc2a5d3931a3bf3e875b0c6ae (patch)
tree46f184f2ba7a59df71939ac69831906e89acea20 /nixos/modules/system/layout.nix
parenta83cd7e33dc3a25465d78700e46b4a63a917eb78 (diff)
Rename nixos/modules/layout.nix to nixos/modules/system/layout.nix
Diffstat (limited to 'nixos/modules/system/layout.nix')
-rw-r--r--nixos/modules/system/layout.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/nixos/modules/system/layout.nix b/nixos/modules/system/layout.nix
new file mode 100644
index 0000000..c36085d
--- /dev/null
+++ b/nixos/modules/system/layout.nix
@@ -0,0 +1,16 @@
+{ ... }:
+
+{
+ xdg.userDirs = {
+ enable = true;
+ createDirectories = true;
+ download = "/home/cat/downloads";
+ documents = "/home/cat/documents";
+ pictures = "/home/cat/pictures";
+ videos = "/home/cat/videos";
+ music = "/home/cat/music";
+ desktop = "/home/cat/desktop";
+ publicShare = "/home/cat/public";
+ templates = "/home/cat/templates";
+ };
+}