summaryrefslogtreecommitdiff
path: root/nixos/modules
diff options
context:
space:
mode:
authorcaley <195605706+cqley@users.noreply.github.com>2026-07-22 07:32:14 +0200
committerGitHub <noreply@github.com>2026-07-22 07:32:14 +0200
commit1dc76b3b581ab4ae18ff02c1b3d15ca30d5110e4 (patch)
tree70af024e3963597febea50eafc67cf7728eb5ed8 /nixos/modules
parente8af396498c43fdfce46c00f7dab31707a006e8d (diff)
Create layout.nix
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/layout.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/nixos/modules/layout.nix b/nixos/modules/layout.nix
new file mode 100644
index 0000000..c36085d
--- /dev/null
+++ b/nixos/modules/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";
+ };
+}