nix-configs/hosts/x86_64/garrus/configuration.nix
2025-12-15 12:20:15 -07:00

24 lines
498 B
Nix

{
config,
pkgs,
...
}: {
# Latest kernel needed for best support
#boot.kernelPackages = pkgs.linuxPackages_6_15;
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = ["sg"]; # sg is for makemkv
# Name your host machine
networking.hostName = "garrus";
hardware.system76.enableAll = true;
environment.systemPackages = with pkgs; [
system76-keyboard-configurator
firmware-manager
protonvpn-gui
gimp
];
services.tailscale.enable = true;
}