diff --git a/flake.lock b/flake.lock index 54838ba..840ac04 100644 --- a/flake.lock +++ b/flake.lock @@ -21,6 +21,22 @@ "type": "github" } }, + "nixos-hardware": { + "locked": { + "lastModified": 1773533765, + "narHash": "sha256-qonGfS2lzCgCl59Zl63jF6dIRRpvW3AJooBGMaXjHiY=", + "owner": "NixOS", + "repo": "nixos-hardware", + "rev": "f8e82243fd601afb9f59ad230958bd073795cbfe", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "master", + "repo": "nixos-hardware", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1773222311, @@ -40,6 +56,7 @@ "root": { "inputs": { "home-manager": "home-manager", + "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs" } } diff --git a/flake.nix b/flake.nix index 1cc8778..7ab0f80 100644 --- a/flake.nix +++ b/flake.nix @@ -3,14 +3,15 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; - + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + home-manager = { url = "github:nix-community/home-manager/release-23.05"; inputs.nixpkgs.follows = "nixpkgs"; }; }; - outputs = { self, nixpkgs, home-manager, ... }@inputs: { + outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs: { nixosConfigurations.qmoran-laptop = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ @@ -19,6 +20,7 @@ ./nix/user-quin.nix ./nix/gui1.nix ./nix/mega.nix + nixos-hardware.nixosModules.framework-11th-gen-intel ]; };