flake: add nixos-hardware for jaal

This commit is contained in:
Aaron Honeycutt 2024-02-09 06:49:43 -07:00
parent d09f4c54c3
commit d95167fc62

View file

@ -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
];
};