nixos/modules/dev/editors/vscode/fhs.nix
2023-08-06 20:55:37 +03:00

21 lines
315 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.dev.editors.vscode.fhs;
in {
options.modules.dev.editors.vscode.fhs = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
vscode.fhs
];
};
}