diff options
| author | Grigory Shipunov | 2023-02-14 22:10:34 +0100 |
|---|---|---|
| committer | Grigory Shipunov | 2023-02-14 22:10:34 +0100 |
| commit | db45fa36331f575b8266a756eabb5829bdc3d339 (patch) | |
| tree | 76c4bb0e430d7c036883d7214cbb679b1b273eae | |
| parent | 11f0218afc19ed9db58e741e44b24ec98e16006b (diff) | |
fix brain fart
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | hosts/dishwasher/microvms.nix | 6 |
2 files changed, 3 insertions, 4 deletions
@@ -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"; }; }; |
