diff --git a/flake.lock b/flake.lock index 7cd10b3..8b52162 100644 --- a/flake.lock +++ b/flake.lock @@ -896,6 +896,21 @@ "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": { "locked": { "lastModified": 1700612854, @@ -1202,6 +1217,7 @@ "lanzaboote": "lanzaboote", "lix": "lix", "niri": "niri", + "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs_7", "nur": "nur" } diff --git a/flake.nix b/flake.nix index 7248e33..88e9835 100644 --- a/flake.nix +++ b/flake.nix @@ -16,6 +16,10 @@ }; }; + nixos-hardware = { + url = "github:nixos/nixos-hardware"; + }; + nur = { url = "github:nix-community/nur"; }; diff --git a/outputs.nix b/outputs.nix index adbe32a..c678d54 100644 --- a/outputs.nix +++ b/outputs.nix @@ -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 ./options.nix @@ -49,6 +49,7 @@ in { }; modules = [ ./devices/inkvine + nixos-hardware.nixosModules.framework-13-7040-amd ] ++ modules; }; };