mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-13 11:43:01 -06:00
31 lines
666 B
Nix
31 lines
666 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Name your host machine
|
|
networking.hostName = "garrus";
|
|
|
|
# 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;
|
|
}
|