lol

Merge pull request #259075 from schuelermine/patch/nixos/modules/nano/syntaxHighlight

authored by

Artturi and committed by
GitHub
32817b0b 30e8b683

+2 -1
+2 -1
nixos/modules/programs/nano.nix
··· 29 29 30 30 syntaxHighlight = lib.mkOption { 31 31 type = lib.types.bool; 32 - default = false; 32 + default = true; 33 33 description = lib.mdDoc "Whether to enable syntax highlight for various languages."; 34 34 }; 35 35 }; ··· 40 40 etc.nanorc.text = (lib.optionalString cfg.syntaxHighlight '' 41 41 # load syntax highlighting files 42 42 include "${cfg.package}/share/nano/*.nanorc" 43 + include "${cfg.package}/share/nano/extra/*.nanorc" 43 44 '') + cfg.nanorc; 44 45 systemPackages = [ cfg.package ]; 45 46 };