Install VSCode from unstable for extension compatibility

This commit is contained in:
SebastianStork 2025-02-01 22:13:35 +01:00
parent bb0e5ea9de
commit 58886e54b5
6 changed files with 48 additions and 17 deletions

View file

@ -1,4 +1,9 @@
{ inputs, self, ... }:
{
inputs,
self,
pkgs-unstable,
...
}:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
@ -6,7 +11,7 @@
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit inputs self;
inherit inputs self pkgs-unstable;
};
};
}