Desktop: enable vscode

This commit is contained in:
Toast 2023-10-30 12:03:20 +01:00
parent 734b043bc7
commit 3dfdbe92c6
2 changed files with 9 additions and 0 deletions

View file

@ -7,5 +7,6 @@
./micro.nix
./keepassxc.nix
./jamesdsp.nix
./vscode.nix
];
}

View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
home-manager.users.toast.programs.vscode = {
enable = true;
package = pkgs.vscodium;
};
}