add environment

This commit is contained in:
Aditya 2024-04-11 11:05:45 +05:30
parent 61195fb59b
commit 0e6f928345
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 11 additions and 9 deletions

View file

@ -67,15 +67,6 @@
};
};
environment = {
homeBinInPath = true; # Include ~/bin/ in $PATH
localBinInPath = true; # Include ~/.local/bin in $PATH
sessionVariables = {
# tell electron apps to use wayland
NIXOS_OZONW_WL = "1";
};
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View file

@ -4,6 +4,7 @@
./bootloader
./display-manager
./editor
./environment
./filesystem
./fonts
./hardware

View file

@ -0,0 +1,10 @@
_: {
environment = {
homeBinInPath = true; # Include ~/bin/ in $PATH
localBinInPath = true; # Include ~/.local/bin in $PATH
sessionVariables = {
# tell electron apps to use wayland
NIXOS_OZONE_WL = "1";
};
};
}