defenestrate/final/flake.nix

11 lines
301 B
Nix
Raw Normal View History

2022-03-15 17:51:21 +08:00
{
inputs.artiq.url = git+https://github.com/m-labs/artiq.git;
outputs = { self, artiq }: {
nixosConfigurations.artiq = artiq.inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit artiq; };
2022-05-05 19:12:39 +08:00
modules = [ ./configuration.nix ./spyder ];
2022-03-15 17:51:21 +08:00
};
};
}