mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 17:57:47 +02:00
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:
parent
15dbd547d2
commit
9a3c1976ab
@ -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";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user