2024-06-24 03:32:33 +03:00
|
|
|
{ pkgs, ... }: {
|
2024-05-04 23:15:57 +03:00
|
|
|
variables = {
|
2024-06-24 03:32:33 +03:00
|
|
|
# Default text editor.
|
|
|
|
EDITOR = "nvim";
|
|
|
|
|
|
|
|
# App to use for man pages.
|
|
|
|
MANPAGER = "nvim +Man!";
|
|
|
|
|
|
|
|
# Allow unfree packages in shell.
|
2024-05-04 23:15:57 +03:00
|
|
|
NIXPKGS_ALLOW_UNFREE = "1";
|
2024-06-24 03:32:33 +03:00
|
|
|
|
|
|
|
# Current system architecture.
|
|
|
|
NIX_CURRENT_SYSTEM = "${pkgs.stdenv.system}";
|
|
|
|
|
|
|
|
# Terminal settings.
|
|
|
|
TERM = "xterm-256color";
|
2024-05-04 23:15:57 +03:00
|
|
|
};
|
|
|
|
}
|