modules: fix merge conflicts

This commit is contained in:
NotAShelf 2024-04-27 16:13:19 +03:00
parent b397dcb430
commit aaf286dce4
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
2 changed files with 2 additions and 3 deletions

View File

@ -96,13 +96,13 @@ in {
type = mkOption {
description = "CSS formatter to use";
type = with types; enum (attrNames formats);
type = enum (attrNames formats);
default = defaultFormat;
};
package = mkOption {
description = "CSS formatter package";
type = types.package;
type = package;
default = formats.${cfg.format.type}.package;
};
};

View File

@ -51,4 +51,3 @@ in {
};
};
}