Option: added niksos.desktop.apps option, that disables most heavier apps

This commit is contained in:
Jurn Wubben 2025-07-09 00:33:25 +02:00
parent 678c3cb4f7
commit d233e18593
6 changed files with 19 additions and 43 deletions

View file

@ -7,13 +7,15 @@
}: let
inherit (lib) optionals;
inherit (osConfig.niksos.hardware) bluetooth portable;
inherit (osConfig.niksos.desktop) apps;
in {
home.packages =
[
pkgs.ripgrep
pkgs.fzf
pkgs.p7zip
pkgs.dua
pkgs.ffmpeg
pkgs.usbutils
pkgs.pciutils
@ -21,6 +23,12 @@ in {
pkgs.aria2
pkgs.file
]
++ optionals apps [
# Kinda don't need to include these on more minimal installs.
pkgs.ffmpeg
pkgs.imagemagick
pkgs.ghostscript
]
++ optionals bluetooth [
pkgs.ear2ctl
]