Add exclude_packages to allow modifying default install

This commit is contained in:
Henry Sipp
2025-07-24 20:42:02 -05:00
parent b83efbcf18
commit e22477bb58
4 changed files with 35 additions and 28 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
{
config,
pkgs,
lib,
...
}: let
cfg = config.omarchy;
packages = import ../packages.nix {inherit pkgs;};
packages = import ../packages.nix {inherit pkgs lib; exclude_packages = cfg.exclude_packages;};
in {
security.rtkit.enable = true;
services.pulseaudio.enable = false;