nix/home/variable/default.nix

29 lines
515 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ pkgs, ... }: {
# Default text editor.
EDITOR = "nvim";
2024-11-04 04:37:29 +03:00
# App to use for man pages.
MANPAGER = "nvim +Man!";
2024-11-04 04:37:29 +03:00
# Allow unfree packages in shell.
NIXPKGS_ALLOW_UNFREE = "1";
2024-11-04 04:37:29 +03:00
# Current system architecture.
NIX_CURRENT_SYSTEM = "${pkgs.stdenv.system}";
2024-11-04 04:37:29 +03:00
# Enable Mangohud by default.
MANGOHUD = "1";
2024-11-04 04:37:29 +03:00
# Use fsync for Wine.
WINEFSYNC = "1";
2024-11-04 04:37:29 +03:00
# Disable Firefox profile switching on rebuild.
MOZ_LEGACY_PROFILES = "1";
2024-11-04 04:37:29 +03:00
# GTK apps compat.
GTK_CSD = 0;
2024-11-04 04:37:29 +03:00
# Terminal settings.
TERM = "xterm-256color";
}