all repos — nixfiles @ 02622d2b20d014ddb479365cd4d7467398dd8389

System and user configuration, managed by nix and home-manager

Import nixos-hardware
Alan Pearce alan@alanpearce.eu
Sat, 25 Jun 2022 00:55:03 +0200
commit

02622d2b20d014ddb479365cd4d7467398dd8389

parent

2dfb3476768af7444f94590a1ce6e5200d5cc663

2 files changed, 5 insertions(+), 4 deletions(-)

jump to
M flake.nixflake.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.nixsystem/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