fix brain fart

This commit is contained in:
Grigory Shipunov 2023-02-14 22:10:34 +01:00
parent 11f0218afc
commit db45fa3633
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
2 changed files with 3 additions and 4 deletions

View file

@ -107,7 +107,6 @@
./hosts/dishwasher ./hosts/dishwasher
./modules/basic-tools ./modules/basic-tools
./modules/binary-caches.nix ./modules/binary-caches.nix
{ config._module.args = { flake = self; }; }
]; ];
}; };

View file

@ -1,11 +1,11 @@
{ flake, ... }: { { inputs, ... }: {
microvm.vms = { microvm.vms = {
nextcloud = { nextcloud = {
flake = flake; flake = inputs.self;
updateFlake = "git+https://git.sr.ht/~oxapentane/oxalab-config?ref=master"; updateFlake = "git+https://git.sr.ht/~oxapentane/oxalab-config?ref=master";
}; };
music = { music = {
flake = flake; flake = inputs.self;
updateFlake = "git+https://git.sr.ht/~oxapentane/oxalab-config?ref=master"; updateFlake = "git+https://git.sr.ht/~oxapentane/oxalab-config?ref=master";
}; };
}; };