]> gitweb.ps.run Git - flake_server/blob - flake.nix
Update
[flake_server] / flake.nix
1 {
2   description = "NixOS Flake";
3
4   inputs = {
5     nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
6     flake-utils.url = "github:numtide/flake-utils";
7
8     chirp.url = "git://psch.dev/chirp";
9   };
10
11   outputs = { self, nixpkgs, flake-utils, ... }@inputs: {
12     nixosConfigurations = {
13       default = nixpkgs.lib.nixosSystem {
14         system = "x86_64-linux";
15         specialArgs = {inherit inputs;};
16         modules = [
17           ./configuration.nix
18           {
19             config._module.args.chirp = inputs.chirp;
20           }
21         ];
22       };
23     };
24   };
25 }
26