home: packages: add 'allowAliases', 'allowUnfree'
ci/woodpecker/push/check Pipeline was successful Details

With [1], this should now be taken into account properly.

[1]: https://github.com/nix-community/home-manager/pull/4304
This commit is contained in:
Bruno BELANYI 2023-12-08 11:50:44 +00:00
parent 22fa05ca0c
commit 16fade92b4
1 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,10 @@ in
options.my.home.packages = with lib; {
enable = my.mkDisableOption "user packages";
allowAliases = mkEnableOption "allow package aliases";
allowUnfree = my.mkDisableOption "allow unfree packages";
additionalPackages = mkOption {
type = with types; listOf package;
default = [ ];
@ -23,5 +27,9 @@ in
file
ripgrep
] ++ cfg.additionalPackages);
nixpkgs.config = {
inherit (cfg) allowAliases allowUnfree;
};
};
}