fix(droid): add systemPackages to packages
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-08-20 20:06:20 -04:00
parent c70e585569
commit 4cd5cc98cc

View file

@ -45,13 +45,18 @@ inputs: rec {
modules =
[
{
({config, ...}: {
options = with pkgs.lib; {
environment.variables.FLAKE = mkOption {
type = with types; nullOr str;
};
environment.systemPackages = mkOption {
type = with types; listOf package;
default = [];
};
};
}
config.environment.packages = config.environment.systemPackages;
})
{home-manager = {inherit extraSpecialArgs;};}
../common/nix-on-droid.nix
]