Update modules/coreDesktop/default.nix

This commit is contained in:
logical_code 2025-07-07 14:55:20 -04:00
parent dbfcdf81fd
commit b20e5aea1c

View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.coreDesktop;
in {
options.programs.common = {
enable = mkEnableOption "Config and Utils for Desktop";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
vscodium
brave
];
};
}