1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-18 10:16:54 +00:00

hyprlock: fix description of sourceFirst option

This commit is contained in:
Robert Helgesson 2025-02-05 22:29:57 +01:00
parent 8e166a1263
commit b4716b8081
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -92,11 +92,10 @@ in {
'';
};
sourceFirst = lib.mkEnableOption ''
putting source entries at the top of the configuration
'' // {
default = true;
};
sourceFirst = lib.mkEnableOption
"putting source entries at the top of the configuration" // {
default = true;
};
importantPrefixes = lib.mkOption {
type = with lib.types; listOf str;