nix-dotfiles/home/code.nix

15 lines
255 B
Nix

{pkgs, lib, ...}:
{
unstable.config.allowUnfree = true;
home-manager.users.gunalx = {
#vscode with home manager
programs.vscode = {
enable = true;
enableUpdateCheck = false;
package = unstable.vscode-fhs;
};
};
}