adding module structures - not in use yet

This commit is contained in:
Stephen Bryant
2025-01-05 22:01:57 -05:00
parent 8b35100a4c
commit 0d6257b816
4 changed files with 0 additions and 0 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
];
}