Add vscode, add settings for it managed by stow

This commit is contained in:
Alexander
2025-08-05 18:50:36 +02:00
parent b0c2bd1594
commit bce5674b84
7 changed files with 66 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.dov.development.vscode;
in {
options.dov.development.vscode.enable = mkEnableOption "vscode config";
config = mkIf cfg.enable {
home.packages = with pkgs; [
vscode.fhs
];
};
}