From 7751902902f2f8cdb4e140b48838b0bcb3903860 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 24 May 2026 20:39:33 +0200 Subject: tweak(workstation): add nixpkgs-unstable to NIX_PATH --- nixos/profiles/workstation/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index 2c70f0e..1b1699b 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ config, lib, pkgs, pkgs-unstable, ... }: let cfg = config.workstation; @@ -25,6 +25,7 @@ in # Makes commands default to the same Nixpkgs, config, overlays and NixOS configuration nix.nixPath = [ "nixpkgs=${pkgs.path}" + "nixpkgs-unstable=${pkgs-unstable.path}" "nixos-config=${toString }" ]; environment.variables.NIXPKGS_CONFIG = lib.mkForce (toString ./nixpkgs/config.nix); -- cgit v1.3.1