From f4238dc85c3d716211af3cde2e4154659bc6240b Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 12 Dec 2019 15:40:55 +0100 Subject: [PATCH] enable firmware updates and fwupd --- common/system.nix | 1 + home/felschr-work.nix | 1 + work-pc.nix | 3 +++ 3 files changed, 5 insertions(+) diff --git a/common/system.nix b/common/system.nix index 6fdcf54..11b281b 100644 --- a/common/system.nix +++ b/common/system.nix @@ -29,4 +29,5 @@ ''; services.printing.enable = true; + services.fwupd.enable = true; } diff --git a/home/felschr-work.nix b/home/felschr-work.nix index 33bb5e0..c7b3753 100644 --- a/home/felschr-work.nix +++ b/home/felschr-work.nix @@ -45,6 +45,7 @@ with pkgs; home.packages = with pkgs; [ # system gparted + gnome-firmware-updater # productivity discord diff --git a/work-pc.nix b/work-pc.nix index 8700b36..858c024 100644 --- a/work-pc.nix +++ b/work-pc.nix @@ -22,6 +22,9 @@ virtualisation.virtualbox.host.enable = true; + hardware.enableAllFirmware = true; + hardware.cpu.intel.updateMicrocode = true; + users.users.felschr = { isNormalUser = true; extraGroups = [ "wheel" "audio" "docker" "disk" "vboxusers" ];