summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix1
-rw-r--r--hosts/dishwasher/microvms.nix6
2 files changed, 3 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 190e3dd..e993e6a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -107,7 +107,6 @@
./hosts/dishwasher
./modules/basic-tools
./modules/binary-caches.nix
- { config._module.args = { flake = self; }; }
];
};
diff --git a/hosts/dishwasher/microvms.nix b/hosts/dishwasher/microvms.nix
index 012f5c2..e6ee65b 100644
--- a/hosts/dishwasher/microvms.nix
+++ b/hosts/dishwasher/microvms.nix
@@ -1,11 +1,11 @@
-{ flake, ... }: {
+{ inputs, ... }: {
microvm.vms = {
nextcloud = {
- flake = flake;
+ flake = inputs.self;
updateFlake = "git+https://git.sr.ht/~oxapentane/oxalab-config?ref=master";
};
music = {
- flake = flake;
+ flake = inputs.self;
updateFlake = "git+https://git.sr.ht/~oxapentane/oxalab-config?ref=master";
};
};