nixos-config/home/yt/common.nix

28 lines
409 B
Nix
Raw Normal View History

2024-12-22 14:12:25 -05:00
{ pkgs, ... }:
2024-12-19 02:32:58 -05:00
{
imports = [
2024-12-15 02:44:50 -05:00
../tmux.nix
2024-12-23 11:39:48 -05:00
../fish.nix
];
2024-12-14 00:21:53 -05:00
home.sessionVariables = {
"EDITOR" = "nvim";
};
2024-12-15 02:08:57 -05:00
xdg.configFile = {
nvim.source = ../nvim;
};
2024-12-22 14:12:25 -05:00
home.packages = with pkgs; [
man-pages
man-pages-posix
man
man-db
];
2024-12-23 02:30:20 -05:00
programs.zoxide.options = [ "--cmd cd" ];
programs.fzf.enable = true;
programs.zoxide.enable = true;
programs.eza.enable = true;
}