pass self as extra input
This commit is contained in:
parent
b5d9507157
commit
73757ed94e
2 changed files with 4 additions and 3 deletions
|
@ -100,6 +100,7 @@
|
|||
dishwasher = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
extraArgs = { flake = self; };
|
||||
modules = [
|
||||
sops-nix.nixosModules.sops
|
||||
microvm.nixosModules.host
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ self, ... }: {
|
||||
{ flake, ... }: {
|
||||
microvm.vms = {
|
||||
nextcloud = {
|
||||
flake = self;
|
||||
flake = flake;
|
||||
updateFlake = "github:oxapentane/nix-config/master";
|
||||
};
|
||||
music = {
|
||||
flake = self;
|
||||
flake = flake;
|
||||
updateFlake = "github:oxapentane/nix-config/navidrome";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue