nix-configs/hosts/x86_64/garrus/configuration.nix
2025-05-02 12:52:18 -06:00

16 lines
349 B
Nix

{ config, pkgs, ... }:
{
# Latest kernel needed for best support
boot.kernelPackages = pkgs.linuxPackages_latest;
# Name your host machine
networking.hostName = "garrus";
environment.systemPackages = with pkgs; [
# System76 Tools
system76-keyboard-configurator
firmware-manager
];
}