omniflake/home/profiles/minimal.nix
2026-03-05 09:11:17 +01:00

51 lines
759 B
Nix

{ config, pkgs, ... }:
{
programs.home-manager.enable = true;
home.homeDirectory = "/home/${config.home.username}";
home.packages = with pkgs; [
dust
fastfetch
fzf
jq
nh
nix-search
progress
rename
silver-searcher
tldr
tmux
yq
];
imports = [
../fish.nix
../vifm.nix
../nvim
../tmux.nix
../ssh.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";
}