chore: move env vars to shared file
This commit is contained in:
parent
1667b9196f
commit
f586de1cb1
3 changed files with 8 additions and 10 deletions
|
@ -147,16 +147,6 @@
|
|||
services.gnome.gnome-keyring.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 = {
|
||||
ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||
MOZ_ENABLE_WAYLAND = 1;
|
||||
|
|
|
@ -13,5 +13,6 @@
|
|||
./programs/hyprland.nix
|
||||
./home-manager.nix
|
||||
./system/mime.nix
|
||||
./env.nix
|
||||
];
|
||||
}
|
||||
|
|
7
modules/env.nix
Normal file
7
modules/env.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.sessionVariables = {
|
||||
MANROFFOPT = "-c";
|
||||
MANPAGER = "sh -c 'col -bx | ${pkgs.bat}/bin/bat -l man -p'";
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue