flake/nixos/environment.nix

19 lines
501 B
Nix
Raw Normal View History

2024-11-16 13:38:09 -05:00
{ lib, ... }: {
environment.variables = {
EDITOR = lib.mkDefault (if builtins.hasAttr "SSH_CONNECTION"
builtins.currentSystemEnvironment then
"nvim"
else
"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
};
}