install vscode as unstable version
This commit is contained in:
parent
af7aff9136
commit
06a099aeb5
2 changed files with 4 additions and 2 deletions
|
|
@ -4,6 +4,7 @@
|
|||
config,
|
||||
pkgs,
|
||||
custom,
|
||||
unstable,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
|
@ -16,7 +17,7 @@ in
|
|||
};
|
||||
|
||||
home-manager.users.asakiyuki = {
|
||||
_module.args = { inherit inputs osconfig custom libs; };
|
||||
_module.args = { inherit inputs unstable osconfig custom libs; };
|
||||
imports = [
|
||||
./modules/programs.nix
|
||||
./modules/files.nix
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
{ ... }: {
|
||||
{ unstable, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = unstable.vscode;
|
||||
};
|
||||
}
|
||||
Reference in a new issue