added nixos hardware

This commit is contained in:
twoneis 2024-07-26 22:24:14 +02:00
parent 6bcec3b223
commit 9ab5d67415
3 changed files with 22 additions and 1 deletions

16
flake.lock generated
View file

@ -896,6 +896,21 @@
"type": "github" "type": "github"
} }
}, },
"nixos-hardware": {
"locked": {
"lastModified": 1722017959,
"narHash": "sha256-vkv3MtjRtJdqeWMLH874ngbC6/5wUYzsdw0pb96ZLRc=",
"owner": "nixos",
"repo": "nixos-hardware",
"rev": "0b4d40f95a68ef0a6785f6b938ac8c1383321dbf",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixos-hardware",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1700612854, "lastModified": 1700612854,
@ -1202,6 +1217,7 @@
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"lix": "lix", "lix": "lix",
"niri": "niri", "niri": "niri",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_7", "nixpkgs": "nixpkgs_7",
"nur": "nur" "nur": "nur"
} }

View file

@ -16,6 +16,10 @@
}; };
}; };
nixos-hardware = {
url = "github:nixos/nixos-hardware";
};
nur = { nur = {
url = "github:nix-community/nur"; url = "github:nix-community/nur";
}; };

View file

@ -1,4 +1,4 @@
{ nixpkgs, lix, home-manager, niri, impermanence, lanzaboote, ... }@inputs: let { nixpkgs, lix, home-manager, nixos-hardware, niri, impermanence, lanzaboote, ... }@inputs: let
modules = [ modules = [
./modules ./modules
./options.nix ./options.nix
@ -49,6 +49,7 @@ in {
}; };
modules = [ modules = [
./devices/inkvine ./devices/inkvine
nixos-hardware.nixosModules.framework-13-7040-amd
] ++ modules; ] ++ modules;
}; };
}; };