Add CPU micro code updater

This commit is contained in:
BuyMyMojo 2025-03-25 04:53:08 +11:00
parent bd5a8ad917
commit 5582cd6ad9
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
3 changed files with 94 additions and 38 deletions

View file

@ -7,6 +7,9 @@
home-manger.url = "github:nix-community/home-manager";
home-manger.inputs.nixpkgs.follows = "nixpkgs";
# CPU microcode updater
ucodenix.url = "github:e-tho/ucodenix";
};
outputs =
@ -19,6 +22,7 @@
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
@ -31,6 +35,7 @@
modules = [
./configuration.nix
];
};
};