diff options
| author | Grigory Shipunov | 2023-01-24 20:51:02 +0100 |
|---|---|---|
| committer | Grigory Shipunov | 2023-01-24 20:51:02 +0100 |
| commit | 73757ed94eb9f1bb28a72c70c1ed35d1e253f158 (patch) | |
| tree | 898ed80d699a1847f47d30cd1ccf1691af67dfae /hosts | |
| parent | b5d95071571de62aa62783c65e8cf7ecc487d162 (diff) | |
pass self as extra input
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/dishwasher/microvms.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/dishwasher/microvms.nix b/hosts/dishwasher/microvms.nix index 9c69142..fd2faa3 100644 --- a/hosts/dishwasher/microvms.nix +++ b/hosts/dishwasher/microvms.nix @@ -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"; }; }; |
