Import nixos-hardware
1 file changed, 2 insertions(+), 1 deletion(-)
changed files
M flake.nix → flake.nix
@@ -5,9 +5,10 @@ nixpkgs-unstable.url = github:NixOS/nixpkgs; nixos-hardware.url = github:NixOS/nixos-hardware; }; - outputs = { self, nixpkgs, nixpkgs-unstable, nixos-hardware }: { + outputs = { self, nixpkgs, ... }@attrs: { nixosConfigurations.prefect = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = attrs; modules = [ ./system/prefect.nix ]; }; };