mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
winboat: Override nodejs version with old stable
This commit is contained in:
parent
636b83ccf5
commit
ca11d86762
3 changed files with 28 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
pkgs,
|
||||
pkgs-unstable,
|
||||
lib,
|
||||
|
|
@ -12,6 +13,13 @@
|
|||
virtualisation.docker.enable = true;
|
||||
users.users.seb.extraGroups = [ config.users.groups.docker.name ];
|
||||
|
||||
environment.systemPackages = [ (pkgs-unstable.winboat.override { nodejs_24 = pkgs.nodejs_24; }) ];
|
||||
environment.systemPackages =
|
||||
let
|
||||
pkgs-old = import inputs.nixpkgs-old {
|
||||
inherit (pkgs.stdenv.hostPlatform) system;
|
||||
inherit (config.nixpkgs) config;
|
||||
};
|
||||
in
|
||||
[ (pkgs-unstable.winboat.override { nodejs_24 = pkgs-old.nodejs_24; }) ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue