dotfiles/programs/vscode.nix

9 lines
95 B
Nix
Raw Normal View History

2023-05-02 22:47:01 +02:00
{ config, pkgs, lib, ... }:
2023-05-16 23:02:01 +02:00
{
2023-05-02 22:47:01 +02:00
programs = {
vscode = {
enable = true;
};
};
}