47 lines
881 B
Nix
47 lines
881 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
./beets.nix
|
|
../../../modules/fish.nix
|
|
];
|
|
|
|
home.username = "user";
|
|
home.homeDirectory = "/home/user";
|
|
|
|
programs.yazi.enable = true;
|
|
programs.yazi.enableFishIntegration = true;
|
|
|
|
programs.fzf.enable = true;
|
|
programs.fzf.enableFishIntegration = true;
|
|
|
|
programs.zoxide.enable = true;
|
|
programs.zoxide.enableFishIntegration = true;
|
|
|
|
programs.lazygit.enable = true;
|
|
programs.lazygit.enableFishIntegration = true;
|
|
|
|
programs.gcc.enable = true;
|
|
|
|
programs.ripgrep.enable = true;
|
|
|
|
programs.eza = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
git = true;
|
|
icons = "always";
|
|
extraOptions = [
|
|
"-1"
|
|
];
|
|
};
|
|
|
|
programs.btop.enable = true;
|
|
programs.fastfetch.enable = true;
|
|
programs.fd.enable = true;
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
home.stateVersion = "26.05";
|
|
}
|