diff --git a/common/configuration.nix b/common/configuration.nix index 39fb15a..e86a231 100644 --- a/common/configuration.nix +++ b/common/configuration.nix @@ -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 = [ diff --git a/common/home-manager/home.nix b/common/home-manager/home.nix index 0ae1e98..df0a330 100644 --- a/common/home-manager/home.nix +++ b/common/home-manager/home.nix @@ -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 ../..";