From 20e3ffdd482c884dc1214daa2aa68a759c6b1705 Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Sun, 26 Oct 2025 23:43:24 -0400 Subject: [PATCH] Began xdg config, added Dev home dir --- modules/home/default.nix | 1 + modules/home/xdg.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 modules/home/xdg.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index cbe5ace..8a62c8b 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -12,6 +12,7 @@ ./ssh.nix ./stylix.nix ./vscode.nix + ./xdg.nix ./zsh.nix ]; } diff --git a/modules/home/xdg.nix b/modules/home/xdg.nix new file mode 100644 index 0000000..7ecad6c --- /dev/null +++ b/modules/home/xdg.nix @@ -0,0 +1,16 @@ +{ + config, + ... +}: +{ + xdg = { + enable = true; + userDirs = { + enable = true; + createDirectories = true; + extraConfig = { + XDG_DEV_DIR = "${config.home.homeDirectory}/Dev"; + }; + }; + }; +}