1
0
Fork 0
forked from Bun/nixos-config
nixos-config/modules/home/profiles/guifull/default.nix

12 lines
273 B
Nix

{ config, lib, ... }:
{
options.home = with lib; {
guifull.enable = mkEnableOption "Enable most other GUI profiles";
};
config.home = lib.mkIf config.home.guifull.enable {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
};
}