run nixfmt

This commit is contained in:
insects 2024-08-21 15:15:04 +02:00
parent 477bce6897
commit 9415d40508
41 changed files with 384 additions and 262 deletions

View file

@ -2,7 +2,8 @@
lib,
config,
...
}: let
}:
let
mkFontOption = kind: {
family = lib.mkOption {
type = lib.types.str;
@ -18,7 +19,8 @@
};
};
cfg = config.fontProfiles;
in {
in
{
options.fontProfiles = {
enable = lib.mkEnableOption "Whether to enable font profiles";
monospace = mkFontOption "monospace";

View file

@ -2,9 +2,11 @@
lib,
config,
...
}: let
}:
let
inherit (lib) mkOption types;
in {
in
{
options.monitors = mkOption {
type = types.listOf (
types.submodule {
@ -48,7 +50,7 @@ in {
};
}
);
default = [];
default = [ ];
};
config = {
assertions = [