diff --git a/nixos/common-hardware.nix b/nixos/common-hardware.nix index 7875f162..adc176a6 100644 --- a/nixos/common-hardware.nix +++ b/nixos/common-hardware.nix @@ -1,8 +1,12 @@ { config, pkgs, lib, ... }: { - sound.enable = true; - networking.networkmanager.enable = true; + boot.kernelModules = [ "fuse" ]; services.smartd.enable = true; + + sound.enable = true; + + networking.networkmanager.enable = true; + hardware.enableRedistributableFirmware = true; hardware.cpu.intel.updateMicrocode = true; hardware.pulseaudio = { diff --git a/nixos/common-services.nix b/nixos/common-services.nix index 25848f1c..d94aeef1 100644 --- a/nixos/common-services.nix +++ b/nixos/common-services.nix @@ -6,6 +6,8 @@ }; services = { + udev.packages = [ pkgs.android-udev-rules ]; + fwupd = { enable = true; package = pkgs.fwupd;