We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8decbfe commit 2640e9bCopy full SHA for 2640e9b
modules/home/default.nix
@@ -114,15 +114,22 @@
114
stateVersion = "24.11";
115
packages = [
116
pkgs.ghostty.terminfo
117
+ pkgs.nixfmt-rfc-style
118
pkgs.nixvim-minimal
119
+ pkgs.ruff
120
+ pkgs.uv
121
];
122
sessionVariables = {
123
EDITOR = "nvim";
124
+ TERMINFO_DIRS = "/root/.nix-profile/share/terminfo:/etc/terminfo:/lib/terminfo:/usr/share/terminfo";
125
+ PATH = "/nix/var/nix/profiles/default/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin /usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/nix/var/nix/profiles/default/bin";
126
};
127
128
- programs.fish.shellAbbrs = {
- e = "nvim";
129
+ programs.fish = {
130
+ shellAbbrs = {
131
+ e = "nvim";
132
+ };
133
134
}
135
)
0 commit comments