save progress

This commit is contained in:
Stephen Bryant
2025-01-05 19:30:12 -05:00
parent 68c1faf38c
commit 377369f862
4 changed files with 232 additions and 10 deletions

View File

@@ -0,0 +1,45 @@
{ pkgs, username, ... }:
{
imports = [
./alacritty
# ./cava
./fonts
./foot
./nvim
./starship
./tmux
./yazi
./zsh
];
# ---- Home Configuration ----
home-manager.users.${username} = {
programs.git.enable = true;
};
# ---- System Configuration ----
programs = {
htop.enable = true;
mtr.enable = true;
};
environment.systemPackages = with pkgs; [
alacritty
brightnessctl
btop
gh
ghostty
kubectl
kubernetes-helm
lens
mods
nitch
pavucontrol
playerctl
ripgrep
todoist
unzip
vhs
zoxide
];
}