fix(droid): add systemPackages to packages
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
c70e585569
commit
4cd5cc98cc
1 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue