defenestrate/final/flake.nix

12 lines
472 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";
2023-01-04 11:30:42 +08:00
# Do not use specialArgs to pass the ARTIQ flake - this evaluates many attributes
# and bloats the installation. https://git.m-labs.hk/M-Labs/defenestrate/issues/1
modules = [ ( import ./configuration.nix { inherit artiq; } ) ];
2022-03-15 17:51:21 +08:00
};
};
}