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,
|
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
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{ ... }: {
|
{ unstable, ... }: {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = unstable.vscode;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Reference in a new issue