mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
16 lines
332 B
Nix
16 lines
332 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# lemp13 needs newer than the 6.6
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
# Name your host machine
|
|
networking.hostName = "garrus";
|
|
|
|
# System76
|
|
environment.systemPackages = with pkgs; [
|
|
system76-keyboard-configurator
|
|
firmware-manager
|
|
];
|
|
|
|
}
|