nix-configs/hosts/x86_64/garrus/configuration.nix

25 lines
535 B
Nix

{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "lemp13";
# 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;
}