This commit is contained in:
LordGrimmauld 2024-04-26 22:03:03 +02:00
parent 2a1acc6285
commit e00e79f420
8 changed files with 7 additions and 51 deletions

View File

@ -69,10 +69,6 @@ in
description = "set of plugins to install. Format: guid = short-id";
};
disableUserPlugins = mkOption {
type = types.bool;
default = false;
description = "disables user controlled plugins";
};
disableUserPlugins = lib.mkEnableOption "disables user controlled plugins";
};
}

View File

@ -48,9 +48,5 @@ in
];
};
options.grimmShared.gaming = with lib; mkOption {
type = types.bool;
default = false;
description = "enables steam, heroic, prism and gamemoded";
};
options.grimmShared.gaming = lib.mkEnableOption"enables steam, heroic, prism and gamemoded";
}

View File

@ -29,9 +29,5 @@ in
};
};
options.grimmShared.locale = with lib; mkOption {
type = types.bool;
default = true;
description = "Sets german units but english language";
};
options.grimmShared.locale = lib.mkEnableOption "Sets german units but english language";
}

View File

@ -16,9 +16,5 @@ in
imports = [ ./bluetooth.nix ];
options.grimmShared.network = with lib; mkOption {
type = types.bool;
default = false;
description = "Enables network manager, wifi and bluetooth";
};
options.grimmShared.network = lib.mkEnableOption "Enables network manager, wifi and bluetooth";
}

View File

@ -37,9 +37,5 @@ in
fonts.fontDir.enable = true;
};
options.grimmShared.portals = with lib; mkOption {
type = types.bool;
default = false;
description = "Enables portals for wlr, gtk and kde as well as fixes fonts";
};
options.grimmShared.portals = lib.mkEnableOption "Enables portals for wlr, gtk and kde as well as fixes fonts";
}

View File

@ -21,9 +21,5 @@ in
]);
};
options.grimmShared.printing = with lib; mkOption {
type = types.bool;
default = false;
description = "Enables print and scan related options";
};
options.grimmShared.printing = lib.mkEnableOption "Enables print and scan related options";
}

View File

@ -153,11 +153,7 @@ in
};
};
pass = mkOption {
type = types.bool;
default = true;
description = "Enables password-store, gnupg and such secret handling";
};
pass = lib.mkEnableOption "Enables password-store, gnupg and such secret handling";
git_user = mkOption {
type = types.str;

View File

@ -1,16 +0,0 @@
\version "@version@"
\include "english.ly"
\score {
\new Staff {
\key c \major
\numericTimeSignature
\time 4/4
<cs' d'' b''>16 <cs' d'' b''>8.
%% Here: the tie on the D's looks funny
%% Too tall? Left-hand endpoint is not aligned with the B tie?
~
<cs' d'' b''>8 [ <b d'' a''> ]
}
}