nix-configs/hosts/x86_64/garrus/configuration.nix
2024-10-11 19:26:37 -06:00

34 lines
763 B
Nix

{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "garrus";
# Set kernel for system76-dkms issue
boot.kernelPackages = pkgs.linuxPackages_6_10;
# System76
hardware.system76.enableAll = true;
environment.systemPackages = with pkgs; [
system76-keyboard-configurator
firmware-manager
# Misc
steam
# COSMIC Utils
cosmic-ext-tweaks
cosmic-ext-forecast
cosmic-ext-tasks
cosmic-ext-calculator
cosmic-ext-examine
stellarshot
];
# Enable COSMIC
services.desktopManager.cosmic.enable = true;
services.displayManager.cosmic-greeter.enable = true;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
}