omniflake/home/minimal.nix

55 lines
825 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
programs.home-manager.enable = true;
home.packages = with pkgs; [
dust
fzf
jq
progress
rename
silver-searcher
tldr
tmux
];
imports = [
./fish.nix
./tmux
./password-store.nix
./vifm
./nvim
./gpg.nix
./ssh.nix
];
programs.nix-index = {
enable = true;
enableFishIntegration = true;
};
programs.git = {
enable = true;
settings = {
user.name = "Till";
user.email = "till@ktiu.net";
pull.rebase = true;
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
lfs = {
enable = true;
};
};
programs.bottom = {
enable = true;
settings.styles.theme = "default-light";
};
home.stateVersion = "22.11";
}