flake/nixos/environment.nix

16 lines
398 B
Nix
Raw Permalink Normal View History

2024-11-16 13:38:09 -05:00
{ lib, ... }: {
environment.variables = {
2024-11-20 12:10:28 -05:00
EDITOR = "nvim";
VISUAL = "code";
# XDG settings
XDG_CONFIG_HOME = lib.mkDefault "$HOME/.config";
};
environment.sessionVariables = {
# Enable Ozone Wayland support in Chromium and Electron applications
#TODO - This causes issues with VSCode until the November 2024 release.
# NIXOS_OZONE_WL = lib.mkDefault "1";
2024-11-16 13:38:09 -05:00
};
}