nix-config/home/xdg-user-dirs.nix
Donovan Glover 9a3c1976ab
Revert "xdg: Hide desktop entries with home-manager"
As alluded to previously I'd rather whitelist applications that show in
a launcher than exclude them.
2024-07-14 09:22:18 -04:00

24 lines
495 B
Nix

{ config, ... }:
let
inherit (config.home) homeDirectory;
in
{
xdg.userDirs = {
enable = true;
createDirectories = true;
desktop = null;
templates = null;
publicShare = null;
download = "${homeDirectory}/";
documents = "${homeDirectory}/";
music = "${homeDirectory}/";
pictures = "${homeDirectory}/";
videos = "${homeDirectory}/";
};
xdg.configFile."user-dirs.locale".text = "ja_JP";
}