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,9 +1,10 @@
inputs: {
config,
pkgs,
lib,
...
}: let
packages = import ../packages.nix {inherit pkgs;};
packages = import ../packages.nix {inherit pkgs lib; exclude_packages = config.omarchy.exclude_packages;};
themes = import ../themes.nix;
selectedTheme = themes.${config.omarchy.theme};