Import nixos-hardware
Alan Pearce alan@alanpearce.eu
Sat, 25 Jun 2022 00:55:03 +0200
2 files changed, 5 insertions(+), 4 deletions(-)
jump to
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 ]; }; };
M system/prefect.nix → system/prefect.nix
@@ -1,8 +1,8 @@-{ config, pkgs, ... }: +{ config, pkgs, nixpkgs, nixpkgs-unstable, nixos-hardware, ... }: { imports = [ - <nixos-hardware/common/pc/ssd> - <nixos-hardware/common/cpu/amd> + (nixos-hardware + "/common/pc/ssd") + (nixos-hardware + "/common/cpu/amd") ./settings/satoshipay.nix ./settings/base.nix