This commit is contained in:
Till 2026-03-29 14:23:01 +02:00
parent d8032cc35d
commit e945735fa1
61 changed files with 344 additions and 550 deletions

52
home/minimal/default.nix Normal file
View file

@ -0,0 +1,52 @@
{ config, pkgs, ... }:
{
programs.home-manager.enable = true;
home.homeDirectory = "/home/${config.home.username}";
imports = [
./fish.nix
./vifm.nix
./nvim
./tmux.nix
./git.nix
];
home.packages = with pkgs; [
dust
eza
fastfetch
fzf
jq
nh
nix-search
progress
rename
silver-searcher
tldr
tmux
yq
];
home.shellAliases = {
cdg = "cd \$(git rev-parse --show-toplevel)";
dmy = "date +'%-d.-%-m.%Y'";
du = "dust";
ls = "eza";
tree = "eza --tree";
top = "btm --battery";
ymd = "date +'%Y-%m-%d'";
};
programs.nix-index = {
enable = true;
enableFishIntegration = true;
};
programs.bottom = {
enable = true;
};
home.stateVersion = "22.11";
}