summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrigory Shipunov2023-02-14 22:10:34 +0100
committerGrigory Shipunov2023-02-14 22:10:34 +0100
commitdb45fa36331f575b8266a756eabb5829bdc3d339 (patch)
tree76c4bb0e430d7c036883d7214cbb679b1b273eae
parent11f0218afc19ed9db58e741e44b24ec98e16006b (diff)
fix brain fart
-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";
};
};