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-05-06 14:32:00 -05:00
|
|
|
}:
|
|
|
|
let
|
2024-01-29 09:24:41 -06:00
|
|
|
inherit (lib) mkIf;
|
2024-05-06 14:32:00 -05:00
|
|
|
in
|
2025-01-21 13:46:02 -06:00
|
|
|
# TODO: explore the ability to expand this so that some of the worthwile extensions are also included.
|
|
|
|
# I don't think it will be simple to integrate vscode-fhs and vscode-with-extensions
|
2024-05-06 14:32:00 -05:00
|
|
|
{
|
2024-03-21 10:53:27 -05:00
|
|
|
config = mkIf config.oizys.desktop.enable {
|
2024-01-29 10:43:35 -06:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# vscode
|
|
|
|
vscode-fhs
|
|
|
|
];
|
|
|
|
};
|
2024-01-23 11:51:13 -06:00
|
|
|
}
|