Make version passing work.

This commit is contained in:
2023-06-30 11:13:15 +01:00
parent ba0afde81f
commit bff66d05b9
2 changed files with 4 additions and 2 deletions

View File

@@ -10,9 +10,10 @@
outputs = { self, nixpkgs, deploy-rs, ... }@inputs:
let
inherit (self);
mkNixos = modules: nixpkgs.lib.nixosSystem {
inherit modules;
specialArgs = { inherit inputs; };
specialArgs = { inherit inputs self; };
};
in {
nixosConfigurations = {