fix(home): Remove unused Niri mod opts

This commit is contained in:
punkfairie 2025-02-28 17:59:59 -08:00
parent 98147166ff
commit 7d78c1e2d3
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -7,32 +7,9 @@
in {
options.marleyos.wayland.niri = {
enable = lib.mkEnableOption "niri";
monitors = lib.mkOption {
description = "Monitor configuration.";
type = with lib.types; attrsOf str;
};
mainMonitor = lib.mkOption {
description = "Which monitor to treat as the main for workspace assignment";
type = with lib.types; str;
};
};
config = lib.mkIf cfg.enable {
assertions = [
{
assertion =
if cfg ? monitors
then cfg ? mainMonitor
else true;
message = ''
You have defined monitors but not selected the main monitor. Please
define marleyos.wayland.niri.mainMonitor.
'';
}
];
marleyos = {
programs = {
waybar.enable = true;