nixos-config/home/gui.nix
2026-02-23 22:36:58 +03:00

26 lines
399 B
Nix

{
pkgs,
config,
lib,
...
}:
{
options = {
custom.gui.enable = lib.mkEnableOption "Enable GUI apps";
};
config = lib.mkIf config.custom.gui.enable {
home.packages = with pkgs; [
brave
feather
fluffychat
libreoffice
obsidian
pavucontrol
qbittorrent
telegram-desktop
thunderbird
trezor-suite
vesktop
];
};
}