From 16cf318a5dbaed8bac05d90e4feebab0182682ec Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Thu, 9 Mar 2023 16:17:42 -0800 Subject: [PATCH] Set xdg folder locations --- modules/xdg.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/xdg.nix b/modules/xdg.nix index e2cb232..d8d4f6d 100644 --- a/modules/xdg.nix +++ b/modules/xdg.nix @@ -1,5 +1,5 @@ -{ pkgs, ... }: +{ config, pkgs, ... }: { xdg = { @@ -7,6 +7,11 @@ enable = true; templates = null; publicShare = null; + + desktop = "${config.home.homeDirectory}/Desktop"; + documents = "${config.home.homeDirectory}/Documents"; + download = "${config.home.homeDirectory}/Downloads"; + music = "${config.home.homeDirectory}/Music"; }; }; }