mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
home-manager: added xdg userDirs
This commit is contained in:
parent
f48ada6814
commit
af336197c4
|
@ -10,4 +10,15 @@
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xdg.userDirs = {
|
||||||
|
enable = true;
|
||||||
|
createDirectories = true;
|
||||||
|
documents = "${config.home.homeDirectory}/docs";
|
||||||
|
download = "${config.home.homeDirectory}/downloads";
|
||||||
|
music = "${config.home.homeDirectory}/music";
|
||||||
|
videos = "${config.home.homeDirectory}/vids";
|
||||||
|
pictures = "${config.home.homeDirectory}/pics";
|
||||||
|
extraConfig = { XDG_SRC_DIR = "${config.home.homeDirectory}/src"; };
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue