feat: add nixos-hardware config for this AMD-7040 framework 13

This commit is contained in:
EinEtwas 2024-10-14 01:02:56 +02:00
parent b475922e36
commit 0ef17a6702
2 changed files with 6 additions and 1 deletions

View file

@ -7,9 +7,10 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
}; };
outputs = { self, nixpkgs, ... } @ inputs: { outputs = { self, nixpkgs, nixos-hardware, ... } @ inputs: {
nixosConfigurations.rhea-laptop = nixpkgs.lib.nixosSystem { nixosConfigurations.rhea-laptop = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -17,6 +18,7 @@
# List all Modules to load # List all Modules to load
modules = [ modules = [
nixos-hardware.nixosModules.framework-13-7040-amd
./modules/configuration.nix ./modules/configuration.nix
./modules/hardware-configuration.nix ./modules/hardware-configuration.nix
./modules/shell.nix ./modules/shell.nix

View file

@ -35,4 +35,7 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# Enable fwupdate
services.fwupd.enable = true;
} }