Move env variables to common non-hm conf
This commit is contained in:
parent
f93f69d51c
commit
0a34d0ac33
2 changed files with 8 additions and 8 deletions
|
@ -16,6 +16,14 @@
|
|||
keyMap = "us";
|
||||
};
|
||||
|
||||
environment.sessionVariables = rec {
|
||||
MOZ_ENABLE_WAYLAND = "1";
|
||||
NIXOS_OZONE_WL = "1";
|
||||
QT_QPA_PLATFORM = "wayland";
|
||||
SDL_VIDEODRIVER = "wayland";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
supportedLocales = [
|
||||
|
|
|
@ -65,14 +65,6 @@
|
|||
zip
|
||||
];
|
||||
|
||||
sessionVariables = {
|
||||
MOZ_ENABLE_WAYLAND = 1;
|
||||
NIXOS_OZONE_WL = 1;
|
||||
QT_QPA_PLATFORM = "wayland";
|
||||
SDL_VIDEODRIVER = "wayland";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
shellAliases = {
|
||||
".." = "cd ..";
|
||||
"..." = "cd ../..";
|
||||
|
|
Loading…
Reference in a new issue