Initial commit
This commit is contained in:
commit
b79d352847
37 changed files with 2191 additions and 0 deletions
26
home/gui.nix
Normal file
26
home/gui.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue