27 lines
409 B
Nix
27 lines
409 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
|
|
mpv
|
|
obsidian
|
|
pavucontrol
|
|
qbittorrent
|
|
telegram-desktop
|
|
thunderbird
|
|
trezor-suite
|
|
vesktop
|
|
];
|
|
};
|
|
}
|