X-Git-Url: https://gitweb.ps.run/flake_server/blobdiff_plain/eacd07da1b91fc1dc317b6da7fe8d22179e20d89..7cf82d745ee23fa24e96a6fe49a1a6cb6a9c2921:/flake.nix diff --git a/flake.nix b/flake.nix index 7ae4716..cf77a57 100644 --- a/flake.nix +++ b/flake.nix @@ -8,14 +8,15 @@ chirp.url = "git://psch.dev/chirp"; }; - outputs = { self, nixpkgs, flake-utils, chirp, ... }@inputs: { + outputs = { self, nixpkgs, flake-utils, ... }@inputs: { nixosConfigurations = { default = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = {inherit inputs;}; modules = [ ./configuration.nix { - config._module.args.chirp = chirp; + config._module.args.chirp = inputs.chirp; } ]; };