enable firmware updates and fwupd

This commit is contained in:
Felix Schröter 2019-12-12 15:40:55 +01:00 committed by Felix Schröter
parent 3740b54a85
commit f4238dc85c
3 changed files with 5 additions and 0 deletions

View file

@ -29,4 +29,5 @@
'';
services.printing.enable = true;
services.fwupd.enable = true;
}

View file

@ -45,6 +45,7 @@ with pkgs;
home.packages = with pkgs; [
# system
gparted
gnome-firmware-updater
# productivity
discord

View file

@ -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" ];