mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-13 11:43:01 -06:00
25 lines
535 B
Nix
25 lines
535 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Name your host machine
|
|
networking.hostName = "garrus";
|
|
|
|
# System76
|
|
environment.systemPackages = with pkgs; [
|
|
system76-keyboard-configurator
|
|
firmware-manager
|
|
|
|
# COSMIC Utils
|
|
cosmic-ext-tweaks
|
|
cosmic-ext-forecast
|
|
cosmic-ext-tasks
|
|
cosmic-ext-calculator
|
|
cosmic-ext-examine
|
|
stellarshot
|
|
];
|
|
|
|
# COSMIC
|
|
services.desktopManager.cosmic.enable = true;
|
|
services.displayManager.cosmic-greeter.enable = true;
|
|
|
|
}
|