mark all dev outputs for install

This commit is contained in:
Emile Clark-Boman 2025-09-03 11:13:13 +10:00
parent eaea98a362
commit c94e75bb02
2 changed files with 20 additions and 10 deletions

View file

@ -198,12 +198,17 @@ in {
};
# ---- ENVIRONMENT VARIABLES ----
environment.sessionVariables = {
# folder names with capitalisation look awful!
XDG_DOWNLOAD_DIR = "$HOME/downloads";
environment = {
# always install "dev" derivation outputs
extraOutputsToInstall = ["dev"];
# Hint Electrons apps to use Wayland
NIXOS_OZONE_WL = "1";
sessionVariables = {
# folder names with capitalisation look awful!
XDG_DOWNLOAD_DIR = "$HOME/downloads";
# Hint Electrons apps to use Wayland
NIXOS_OZONE_WL = "1";
};
};
# ---- SYSTEM PACKAGES -----

View file

@ -191,12 +191,17 @@ in {
};
# ---- ENVIRONMENT VARIABLES ----
environment.sessionVariables = {
# folder names with capitalisation look awful!
XDG_DOWNLOAD_DIR = "$HOME/downloads";
environment = {
# always install "dev" derivation outputs
extraOutputsToInstall = ["dev"];
# Hint Electrons apps to use Wayland
NIXOS_OZONE_WL = "1";
sessionVariables = {
# folder names with capitalisation look awful!
XDG_DOWNLOAD_DIR = "$HOME/downloads";
# Hint Electrons apps to use Wayland
NIXOS_OZONE_WL = "1";
};
};
# ---- SYSTEM PACKAGES -----