cleanup
This commit is contained in:
parent
2a1acc6285
commit
e00e79f420
8 changed files with 7 additions and 51 deletions
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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''> ]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue