forked from M-Labs/defenestrate
parent
4f4f49a217
commit
b848fd61fe
|
@ -1,4 +1,4 @@
|
|||
{ artiq }: { config, pkgs, ... }:
|
||||
{ config, pkgs, artiq, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
|
|
|
@ -3,9 +3,8 @@
|
|||
outputs = { self, artiq }: {
|
||||
nixosConfigurations.artiq = artiq.inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
# 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; } ) ];
|
||||
specialArgs = { inherit artiq; };
|
||||
modules = [ ./configuration.nix ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue