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.
This commit is contained in:
Donovan Glover 2024-07-14 09:22:18 -04:00
parent 15dbd547d2
commit 9a3c1976ab
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -4,49 +4,20 @@ let
inherit (config.home) homeDirectory; inherit (config.home) homeDirectory;
in in
{ {
xdg = { xdg.userDirs = {
desktopEntries = { enable = true;
htop = { createDirectories = true;
name = "htop";
noDisplay = true;
};
fish = { desktop = null;
name = "fish"; templates = null;
noDisplay = true; publicShare = null;
};
nvim = { download = "${homeDirectory}/";
name = "nvim"; documents = "${homeDirectory}/";
noDisplay = true; music = "${homeDirectory}/";
}; pictures = "${homeDirectory}/";
videos = "${homeDirectory}/";
yazi = {
name = "yazi";
noDisplay = true;
};
tectonic = {
name = "tectonic";
noDisplay = true;
};
};
userDirs = {
enable = true;
createDirectories = true;
desktop = null;
templates = null;
publicShare = null;
download = "${homeDirectory}/";
documents = "${homeDirectory}/";
music = "${homeDirectory}/";
pictures = "${homeDirectory}/";
videos = "${homeDirectory}/";
};
configFile."user-dirs.locale".text = "ja_JP";
}; };
xdg.configFile."user-dirs.locale".text = "ja_JP";
} }