Set xdg folder locations

This commit is contained in:
Nickiel12 2023-03-09 16:17:42 -08:00
parent d3e7b6b506
commit 16cf318a5d

View file

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