2024-01-17 20:29:40 -05:00
|
|
|
{
|
|
|
|
home-manager,
|
|
|
|
nixpkgs,
|
|
|
|
...
|
2024-03-26 16:29:31 -04:00
|
|
|
} @ inputs: rec {
|
2024-01-17 20:29:40 -05:00
|
|
|
extraSpecialArgs = inputs;
|
|
|
|
home-manager-path = home-manager.outPath;
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
system = "aarch64-linux";
|
2024-01-17 20:40:12 -05:00
|
|
|
overlays = import ../../common/overlays inputs;
|
2024-01-17 20:29:40 -05:00
|
|
|
};
|
2023-12-08 14:59:44 -05:00
|
|
|
|
2024-01-17 20:29:40 -05:00
|
|
|
modules = [
|
2024-03-26 16:29:31 -04:00
|
|
|
{
|
|
|
|
options = with pkgs.lib; {
|
|
|
|
environment.variables.FLAKE = mkOption {
|
|
|
|
type = with types; nullOr str;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
2024-01-17 20:29:40 -05:00
|
|
|
{home-manager.extraSpecialArgs = inputs;}
|
|
|
|
../../common/nix-on-droid.nix
|
|
|
|
./nix-on-droid.nix
|
2023-12-08 14:59:44 -05:00
|
|
|
];
|
|
|
|
}
|