nixos-config/home/yt/common.nix

23 lines
266 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
../zsh
];
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
];
}