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,10 @@
{ self, pkgs, ... }:
{
config,
inputs,
self,
pkgs,
...
}:
{
imports = [
self.nixosModules.default
@ -68,4 +74,9 @@
];
nixpkgs.config.allowUnfree = true;
_module.args.pkgs-unstable = import inputs.nixpkgs-unstable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
}