oizys/modules/editors/vscode.nix

17 lines
212 B
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
pkgs,
2024-01-29 09:24:41 -06:00
lib,
config,
2024-01-23 11:51:13 -06:00
...
2024-01-29 09:24:41 -06:00
}: let
inherit (lib) mkIf;
cfg = config.desktop;
in {
config = mkIf cfg.enable {
2024-01-29 10:43:35 -06:00
environment.systemPackages = with pkgs; [
# vscode
vscode-fhs
];
};
2024-01-23 11:51:13 -06:00
}