nix-dotfiles/home/code.nix

15 lines
255 B
Nix
Raw Normal View History

{pkgs, lib, ...}:
{
2024-04-18 01:05:45 +02:00
unstable.config.allowUnfree = true;
home-manager.users.gunalx = {
#vscode with home manager
programs.vscode = {
enable = true;
enableUpdateCheck = false;
package = unstable.vscode-fhs;
};
};
}