mirror of
https://github.com/materusPL/Nixerus.git
synced 2026-07-09 16:41:58 +00:00
Move old config here
This commit is contained in:
+13
-4
@@ -1,7 +1,16 @@
|
||||
{ pkgs }:
|
||||
|
||||
with pkgs.lib; {
|
||||
# Add your library functions here
|
||||
#
|
||||
# hexint = x: hexvals.${toLower x};
|
||||
with pkgs; {
|
||||
mkBoolOpt = default: description: lib.mkOption {
|
||||
inherit default;
|
||||
inherit description;
|
||||
type = lib.types.bool;
|
||||
example = true;
|
||||
};
|
||||
mkPrivateVar = default: lib.mkOption {
|
||||
inherit default;
|
||||
readOnly = true;
|
||||
visible = false;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user