2022-03-15 17:51:21 +08:00
|
|
|
{
|
2024-07-17 17:02:54 +08:00
|
|
|
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-24.05;
|
|
|
|
inputs.artiq.url = git+https://github.com/m-labs/artiq.git?ref=release-8;
|
2023-06-06 15:42:11 +08:00
|
|
|
outputs = { self, nixpkgs, artiq }: {
|
|
|
|
nixosConfigurations.artiq = nixpkgs.lib.nixosSystem {
|
2022-03-15 17:51:21 +08:00
|
|
|
system = "x86_64-linux";
|
2023-01-05 11:42:22 +08:00
|
|
|
specialArgs = { inherit artiq; };
|
|
|
|
modules = [ ./configuration.nix ];
|
2022-03-15 17:51:21 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|