From 1dc76b3b581ab4ae18ff02c1b3d15ca30d5110e4 Mon Sep 17 00:00:00 2001 From: caley <195605706+cqley@users.noreply.github.com> Date: Wed, 22 Jul 2026 07:32:14 +0200 Subject: Create layout.nix --- nixos/modules/layout.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 nixos/modules/layout.nix 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"; + }; +} -- cgit v1.3.1