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 VARIABLES ----
environment.sessionVariables = { environment = {
# folder names with capitalisation look awful! # always install "dev" derivation outputs
XDG_DOWNLOAD_DIR = "$HOME/downloads"; extraOutputsToInstall = ["dev"];
# Hint Electrons apps to use Wayland sessionVariables = {
NIXOS_OZONE_WL = "1"; # folder names with capitalisation look awful!
XDG_DOWNLOAD_DIR = "$HOME/downloads";
# Hint Electrons apps to use Wayland
NIXOS_OZONE_WL = "1";
};
}; };
# ---- SYSTEM PACKAGES ----- # ---- SYSTEM PACKAGES -----

View file

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