mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
23 lines
564 B
Nix
23 lines
564 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Name your host machine
|
|
networking.hostName = "garrus";
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_6_10;
|
|
|
|
# System76
|
|
hardware.system76.enableAll = true;
|
|
environment.systemPackages = with pkgs; [
|
|
system76-keyboard-configurator
|
|
firmware-manager
|
|
];
|
|
|
|
# NVIDIA
|
|
# services.xserver.videoDrivers = [ "nvidia" ];
|
|
# hardware.opengl.enable = true;
|
|
# hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
|
|
|
# Allow Unfree
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|