mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
21 lines
359 B
Nix
21 lines
359 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Name your host machine
|
|
networking.hostName = "garrus";
|
|
|
|
# System76
|
|
environment.systemPackages = with pkgs; [
|
|
system76-keyboard-configurator
|
|
firmware-manager
|
|
|
|
# COSMIC Utils
|
|
tweaks
|
|
forecast
|
|
tasks
|
|
calculator
|
|
examine
|
|
#stellarshot
|
|
];
|
|
|
|
}
|