restructure
This commit is contained in:
parent
836da5123e
commit
d0f9c504e3
6 changed files with 10 additions and 12 deletions
45
modules/apps/visual/default.nix
Normal file
45
modules/apps/visual/default.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf;
|
||||
cfg = config.horseman.apps.visual;
|
||||
in {
|
||||
options = {
|
||||
horseman.apps.visual = {
|
||||
enable = mkEnableOption "Apps that run in a visual window";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
horseman.apps.visual = {
|
||||
firefox.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
bitwarden
|
||||
blender
|
||||
gnome-calculator
|
||||
inkscape
|
||||
kitty
|
||||
krita
|
||||
libreoffice
|
||||
mullvad-vpn
|
||||
zathura
|
||||
parsec-bin
|
||||
qbittorrent
|
||||
reaper
|
||||
signal-desktop
|
||||
solaar
|
||||
spotify
|
||||
vesktop
|
||||
vlc
|
||||
];
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.caskaydia-cove
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue