diff --git a/flake.lock b/flake.lock index 51b064f..d3ce593 100644 --- a/flake.lock +++ b/flake.lock @@ -56,6 +56,22 @@ "type": "github" } }, + "nixos-hardware": { + "locked": { + "lastModified": 1742217307, + "narHash": "sha256-3fwpN7KN226ghLlpO9TR0/WpgQOmOj1e8bieUxpIYSk=", + "owner": "NixOS", + "repo": "nixos-hardware", + "rev": "4f4d97d7b7be387286cc9c988760a7ebaa5be1f1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "master", + "repo": "nixos-hardware", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1742069588, @@ -108,6 +124,7 @@ "inputs": { "home-manager": "home-manager", "nixos-cosmic": "nixos-cosmic", + "nixos-hardware": "nixos-hardware", "nixpgs": [ "nixos-cosmic", "nixpkgs" diff --git a/flake.nix b/flake.nix index 225c724..eb10eaf 100644 --- a/flake.nix +++ b/flake.nix @@ -5,6 +5,7 @@ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpgs.follows = "nixos-cosmic/nixpkgs"; nixos-cosmic.url = "github:lilyinstarlight/nixos-cosmic"; + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; home-manager = { url = "github:nix-community/home-manager"; @@ -16,6 +17,7 @@ self, nixpkgs, nixos-cosmic, + nixos-hardware, ... } @ inputs: { # use "nixos", or your hostname as the name of the configuration @@ -32,6 +34,7 @@ }; } nixos-cosmic.nixosModules.default + nixos-hardware.nixosModules.framework-13-7040-amd ]; }; };