defenestrate/final/flake.nix

11 lines
306 B
Nix
Raw Normal View History

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