From f9ccfb738c05ff11f0415a9d92aeb2c7fdf072e3 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 14 Sep 2021 13:25:01 -0400 Subject: [PATCH] feat: add xdg directory configuration --- users/profiles/xdg.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 users/profiles/xdg.nix diff --git a/users/profiles/xdg.nix b/users/profiles/xdg.nix new file mode 100644 index 0000000..28d9f6f --- /dev/null +++ b/users/profiles/xdg.nix @@ -0,0 +1,9 @@ +{ + xdg = { + enable = true; + userDirs = { + enable = true; + createDirectories = true; + }; + }; +}