defenestrate/flake.nix

12 lines
293 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; };
modules = [ ./configuration.nix ];
};
};
}