diff --git a/home/xdg-user-dirs.nix b/home/xdg-user-dirs.nix index e66f3d5c..76548d0e 100644 --- a/home/xdg-user-dirs.nix +++ b/home/xdg-user-dirs.nix @@ -2,51 +2,9 @@ let inherit (config.home) homeDirectory; - - no = { - name = ""; - settings = { - Hidden = "true"; - }; - }; in { xdg = { - desktopEntries = { - htop = no; - fish = no; - nvim = no; - yazi = no; - gcdemu = no; - tectonic = no; - mullvad-vpn = no; - nixos-manual = no; - image-analyzer = no; - activate-linux = no; - - thunar-settings = no; - thunar-bulk-rename = no; - thunar-volman-settings = no; - - fcitx5-configtool = no; - - base = no; - calc = no; - draw = no; - math = no; - writer = no; - impress = no; - startcenter = no; - - "org.fcitx.Fcitx5" = no; - "org.fcitx.fcitx5-migrator" = no; - "org.gnome.Extensions" = no; - "org.pwmt.zathura" = no; - "org.gnome.eog" = no; - "org.gnome.Settings" = no; - "org.sigxcpu.Livi" = no; - }; - userDirs = { enable = true; createDirectories = true; diff --git a/hosts/phone/configuration.nix b/hosts/phone/configuration.nix index 5bfbb35a..d035843d 100644 --- a/hosts/phone/configuration.nix +++ b/hosts/phone/configuration.nix @@ -19,6 +19,13 @@ let ''rgba(${getColorCh color "r"}, ${getColorCh color "g"}, ${getColorCh color "b"}, ${transparency})''; bg = ''linear-gradient(${rgba "base00" "0.7"}, ${rgba "base00" "0.7"})''; + + no = { + name = ""; + settings = { + Hidden = "true"; + }; + }; in { imports = attrValues self.nixosModules; @@ -41,6 +48,24 @@ in xresources ; + xdg.desktopEntries = { + htop = no; + fish = no; + nvim = no; + yazi = no; + gcdemu = no; + mullvad-vpn = no; + nixos-manual = no; + image-analyzer = no; + activate-linux = no; + + "org.gnome.Extensions" = no; + "org.pwmt.zathura" = no; + "org.gnome.eog" = no; + "org.gnome.Settings" = no; + "org.sigxcpu.Livi" = no; + }; + config = { programs.man.generateCaches = mkForce false;