omniflake/home/minimal.nix
2026-01-28 14:00:40 +01:00

51 lines
784 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
programs.home-manager.enable = true;
home.homeDirectory = "/home/${config.home.username}";
home.packages = with pkgs; [
dust
fastfetch
fzf
jq
nix-search
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 = {
pull.rebase = true;
extraConfig.init.defaultBranch = "main";
};
lfs.enable = true;
};
programs.bottom = {
enable = true;
settings.styles.theme = "default-light";
};
home.stateVersion = "22.11";
}