Nix-Deploy/modules/desktop/core/desktop.nix
2025-07-11 00:19:39 -04:00

24 lines
No EOL
397 B
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.core.desktop;
in {
options.core.desktop = {
enable = mkEnableOption "Config and Utils for Desktop";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
vscodium
brave
mission-center
nixfmt-rfc-style
];
};
}