61 lines
965 B
Nix
61 lines
965 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.home-manager.enable = true;
|
|
|
|
home.homeDirectory = "/home/${config.home.username}";
|
|
|
|
home.packages = with pkgs; [
|
|
btm
|
|
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";
|
|
top = "btm --battery";
|
|
ymd = "date +'%Y-%m-%d'";
|
|
};
|
|
|
|
imports = [
|
|
../fish.nix
|
|
../vifm.nix
|
|
../nvim
|
|
../tmux.nix
|
|
];
|
|
|
|
programs.nix-index = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
pull.rebase = true;
|
|
extraConfig.init.defaultBranch = "main";
|
|
};
|
|
lfs.enable = true;
|
|
};
|
|
|
|
programs.bottom = {
|
|
enable = true;
|
|
settings.styles.theme = "default-light";
|
|
};
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|