mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
16 lines
283 B
Nix
16 lines
283 B
Nix
{
|
|
# variables that I want to set globally on all systems
|
|
|
|
environment.variables = {
|
|
# editors
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
SUDO_EDITOR = "nvim";
|
|
|
|
# pager stuff
|
|
SYSTEMD_PAGERSECURE = "true";
|
|
PAGER = "less -FR";
|
|
MANPAGER = "nvim +Man!";
|
|
};
|
|
}
|