mark all dev outputs for install
This commit is contained in:
parent
eaea98a362
commit
c94e75bb02
2 changed files with 20 additions and 10 deletions
|
|
@ -198,13 +198,18 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
# ---- ENVIRONMENT VARIABLES ----
|
# ---- ENVIRONMENT VARIABLES ----
|
||||||
environment.sessionVariables = {
|
environment = {
|
||||||
|
# always install "dev" derivation outputs
|
||||||
|
extraOutputsToInstall = ["dev"];
|
||||||
|
|
||||||
|
sessionVariables = {
|
||||||
# folder names with capitalisation look awful!
|
# folder names with capitalisation look awful!
|
||||||
XDG_DOWNLOAD_DIR = "$HOME/downloads";
|
XDG_DOWNLOAD_DIR = "$HOME/downloads";
|
||||||
|
|
||||||
# Hint Electrons apps to use Wayland
|
# Hint Electrons apps to use Wayland
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# ---- SYSTEM PACKAGES -----
|
# ---- SYSTEM PACKAGES -----
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
||||||
|
|
@ -191,13 +191,18 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
# ---- ENVIRONMENT VARIABLES ----
|
# ---- ENVIRONMENT VARIABLES ----
|
||||||
environment.sessionVariables = {
|
environment = {
|
||||||
|
# always install "dev" derivation outputs
|
||||||
|
extraOutputsToInstall = ["dev"];
|
||||||
|
|
||||||
|
sessionVariables = {
|
||||||
# folder names with capitalisation look awful!
|
# folder names with capitalisation look awful!
|
||||||
XDG_DOWNLOAD_DIR = "$HOME/downloads";
|
XDG_DOWNLOAD_DIR = "$HOME/downloads";
|
||||||
|
|
||||||
# Hint Electrons apps to use Wayland
|
# Hint Electrons apps to use Wayland
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# ---- SYSTEM PACKAGES -----
|
# ---- SYSTEM PACKAGES -----
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue