feat: test user+plasma

This commit is contained in:
2026-07-25 17:18:03 -07:00
parent 5505bbc784
commit 68de58a80c
16 changed files with 3382 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
lib,
config,
pkgs,
...
}: {
home.packages = with pkgs; [
# --- CLI utils ---
spotify-player
wl-clipboard
clipse
timg
sc-im
];
# --- CLI utils ---
programs.git = {
enable = true;
settings = {
init.defaultBranch = "main";
user.name = "winter";
user.email = "149337190+WinterEkisha@users.noreply.github.com";
};
};
programs.eza = {
enable = true;
};
programs.bat = {
enable = true;
};
programs.btop = {
enable = true;
};
programs.lazygit = {
enable = true;
};
programs.tmux = {
enable = true;
};
}