fix all the shits

This commit is contained in:
wooki3 2025-07-08 00:39:39 -04:00
parent c15f7a253f
commit 5c2458a905
12 changed files with 70 additions and 29 deletions

View file

@ -0,0 +1,22 @@
{
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
];
};
}