reorganization

This commit is contained in:
Till 2026-03-10 14:34:01 +01:00
parent bc44678dac
commit 91b5421848
46 changed files with 47 additions and 51 deletions

53
home/minimal.nix Normal file
View file

@ -0,0 +1,53 @@
{ config, pkgs, ... }:
{
programs.home-manager.enable = true;
home.homeDirectory = "/home/${config.home.username}";
imports = [
./modules/fish.nix
./modules/vifm.nix
./modules/nvim
./modules/tmux.nix
./modules/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;
# settings.styles.theme = "default-light";
};
home.stateVersion = "22.11";
}