mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-02 15:04:18 -06:00
19 lines
393 B
Nix
19 lines
393 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
in
|
|
# 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
|
|
{
|
|
config = mkIf config.oizys.desktop.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
# vscode
|
|
vscode-fhs
|
|
];
|
|
};
|
|
}
|