install vscode as unstable version

This commit is contained in:
Asaki Yuki 2026-04-13 00:31:52 +07:00
parent af7aff9136
commit 06a099aeb5
2 changed files with 4 additions and 2 deletions

View file

@ -4,6 +4,7 @@
config, config,
pkgs, pkgs,
custom, custom,
unstable,
... ...
}: }:
let let
@ -16,7 +17,7 @@ in
}; };
home-manager.users.asakiyuki = { home-manager.users.asakiyuki = {
_module.args = { inherit inputs osconfig custom libs; }; _module.args = { inherit inputs unstable osconfig custom libs; };
imports = [ imports = [
./modules/programs.nix ./modules/programs.nix
./modules/files.nix ./modules/files.nix

View file

@ -1,5 +1,6 @@
{ ... }: { { unstable, ... }: {
programs.vscode = { programs.vscode = {
enable = true; enable = true;
package = unstable.vscode;
}; };
} }