chore: move env vars to shared file

This commit is contained in:
Nydragon 2024-06-29 13:12:24 +02:00
parent 1667b9196f
commit f586de1cb1
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
3 changed files with 8 additions and 10 deletions

View file

@ -147,16 +147,6 @@
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
services.flatpak.enable = true; services.flatpak.enable = true;
environment.sessionVariables = {
XDG_CACHE_HOME = "$HOME/.cache";
XDG_CONFIG_HOME = "$HOME/.config";
XDG_DATA_HOME = "$HOME/.local/share";
XDG_STATE_HOME = "$HOME/.local/state";
XDG_CURRENT_DESKTOP = "sway";
MANROFFOPT = "-c";
MANPAGER = "sh -c 'col -bx | ${pkgs.bat}/bin/bat -l man -p'";
};
environment.variables = { environment.variables = {
ELECTRON_OZONE_PLATFORM_HINT = "auto"; ELECTRON_OZONE_PLATFORM_HINT = "auto";
MOZ_ENABLE_WAYLAND = 1; MOZ_ENABLE_WAYLAND = 1;

View file

@ -13,5 +13,6 @@
./programs/hyprland.nix ./programs/hyprland.nix
./home-manager.nix ./home-manager.nix
./system/mime.nix ./system/mime.nix
./env.nix
]; ];
} }

7
modules/env.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.sessionVariables = {
MANROFFOPT = "-c";
MANPAGER = "sh -c 'col -bx | ${pkgs.bat}/bin/bat -l man -p'";
};
}