defenestrate/final/flake.nix

12 lines
359 B
Nix
Raw Permalink Normal View History

2022-03-15 17:51:21 +08:00
{
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05;
2022-07-19 19:04:12 +08:00
inputs.artiq.url = git+https://github.com/m-labs/artiq.git?ref=release-7;
outputs = { self, nixpkgs, artiq }: {
nixosConfigurations.artiq = nixpkgs.lib.nixosSystem {
2022-03-15 17:51:21 +08:00
system = "x86_64-linux";
specialArgs = { inherit artiq; };
modules = [ ./configuration.nix ];
2022-03-15 17:51:21 +08:00
};
};
}