{ pkgs, inputs, lib, config, ... }: { options = { desktop.shell = { noctalia.enable = lib.mkEnableOption "enable noctalia"; }; }; config = { environment.systemPackages = if config.desktop.shell.noctalia.enable then with pkgs; [ evtest gnome-calendar ] else [ ]; }; }