Add nixos-hardware config for Howl

This commit is contained in:
2024-06-01 19:57:24 -06:00
parent 37bd7254b9
commit fd1ead0b62
4 changed files with 36 additions and 1 deletions

View File

@@ -1,8 +1,9 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, nixos-hardware, ... }:
{
imports = [
./hardware-configuration.nix
nixos-hardware.nixosModules.framework-13-7040-amd
];
@@ -58,4 +59,15 @@
];
programs.adb.enable = true;
# thunderbolt
users.users.googlebot.packages = with pkgs; [
kdePackages.plasma-thunderbolt
];
services.fwupd.enable = true;
# fingerprint reader has initially shown to be more of a nuisance than a help
# it makes sddm log in fail most of the time and take several minutes to finish
services.fprintd.enable = false;
}

View File

@@ -14,6 +14,9 @@
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
# thunderbolt
services.hardware.bolt.enable = true;
# firmware
firmware.x86_64.enable = true;