mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
33 lines
529 B
Nix
33 lines
529 B
Nix
|
{ lib, phone, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkIf;
|
||
|
|
||
|
no = {
|
||
|
name = "";
|
||
|
settings.Hidden = "true";
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
xdg.desktopEntries = mkIf phone {
|
||
|
anki = no;
|
||
|
htop = no;
|
||
|
fish = no;
|
||
|
nvim = no;
|
||
|
yazi = no;
|
||
|
qt5ct = no;
|
||
|
qt6ct = no;
|
||
|
gcdemu = no;
|
||
|
nixos-manual = no;
|
||
|
image-analyzer = no;
|
||
|
kvantummanager = no;
|
||
|
chromium-browser = no;
|
||
|
|
||
|
"org.gnome.Extensions" = no;
|
||
|
"org.pwmt.zathura" = no;
|
||
|
"org.gnome.eog" = no;
|
||
|
"org.gnome.Settings" = no;
|
||
|
"org.sigxcpu.Livi" = no;
|
||
|
};
|
||
|
}
|