mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
15 lines
205 B
Nix
15 lines
205 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
in {
|
|
config = mkIf config.oizys.desktop.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
# vscode
|
|
vscode-fhs
|
|
];
|
|
};
|
|
}
|