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"; }; }; }