From d95167fc620f1a6cb52109f0be2ae2faed7934e4 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 9 Feb 2024 06:49:43 -0700 Subject: [PATCH] flake: add nixos-hardware for jaal --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index aed801c..0cfecfa 100644 --- a/flake.nix +++ b/flake.nix @@ -11,9 +11,10 @@ url = "github:nix-community/home-manager/release-23.11"; inputs.nixpkgs.follows = "nixpkgs"; # Use system packages list where available }; + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; - outputs = { self, nixpkgs, disko, home-manager, ... }@inputs: { + outputs = { self, nixpkgs, disko, home-manager, nixos-hardware ... }@inputs: { nixosConfigurations = { "nixos" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; @@ -98,6 +99,7 @@ home-manager.useUserPackages = true; home-manager.users.aaronh = import ./home.nix; } + nixos-hardware.nixosModules.pine64-pinebook-pro ]; };