45 lines
625 B
Nix
45 lines
625 B
Nix
{ 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
|
|
];
|
|
} |