X-Git-Url: https://gitweb.ps.run/flake_server/blobdiff_plain/104bf7f0ae2f8db8387f8f9de8402d32a8db65d7..1c2253e7666889b432f965ec2e352e212107fcb1:/flake.nix diff --git a/flake.nix b/flake.nix index 41f9ecc..cf77a57 100644 --- a/flake.nix +++ b/flake.nix @@ -4,14 +4,20 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; flake-utils.url = "github:numtide/flake-utils"; + + chirp.url = "git://psch.dev/chirp"; }; - outputs = { self, nixpkgs, flake-utils, ... }: { + outputs = { self, nixpkgs, flake-utils, ... }@inputs: { nixosConfigurations = { - hostname = nixpkgs.lib.nixosSystem { + default = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = {inherit inputs;}; modules = [ ./configuration.nix + { + config._module.args.chirp = inputs.chirp; + } ]; }; };