mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
18 lines
368 B
Nix
18 lines
368 B
Nix
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
xdg = {
|
|
userDirs = {
|
|
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";
|
|
};
|
|
};
|
|
}
|
|
|