add nixos-hardware

This commit is contained in:
CherryKitten 2024-06-06 10:27:57 +02:00
parent c4892817d3
commit a88d85b925
Signed by: sammy
GPG key ID: 98D8F75FB0658276
3 changed files with 21 additions and 1 deletions

View file

@ -148,6 +148,22 @@
"type": "github"
}
},
"nixos-hardware": {
"locked": {
"lastModified": 1717574423,
"narHash": "sha256-cz3P5MZffAHwL2IQaNzsqUBsJS+u0J/AAwArHMAcCa0=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "d6c6cf6f5fead4057d8fb2d5f30aa8ac1727f177",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "master",
"repo": "nixos-hardware",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1717281328,
@ -197,6 +213,7 @@
"flake-parts": "flake-parts",
"home-manager": "home-manager",
"impermanence": "impermanence",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable"
}

View file

@ -21,6 +21,8 @@
impermanence.url = "github:nix-community/impermanence";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
flake-parts.url = "github:hercules-ci/flake-parts";
};

View file

@ -2,10 +2,11 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ pkgs, lib, ... }: {
{ pkgs, lib, inputs, ... }: {
imports = [
../../profiles/desktop
./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
];
cherrykitten.impermanence.enable = true;