Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.nano;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
programs.nano = {
|
|
enable = lib.mkEnableOption "nano, a small user-friendly console text editor" // {
|
|
default = true;
|
|
};
|
|
|
|
package = lib.mkPackageOption pkgs "nano" { };
|
|
|
|
nanorc = lib.mkOption {
|
|
type = lib.types.lines;
|
|
default = "";
|
|
description = ''
|
|
The system-wide nano configuration.
|
|
See {manpage}`nanorc(5)`.
|
|
'';
|
|
example = ''
|
|
set nowrap
|
|
set tabstospaces
|
|
set tabsize 2
|
|
'';
|
|
};
|
|
|
|
syntaxHighlight = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = "Whether to enable syntax highlight for various languages.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment = {
|
|
etc.nanorc.text =
|
|
(lib.optionalString cfg.syntaxHighlight ''
|
|
# load syntax highlighting files
|
|
include "${cfg.package}/share/nano/*.nanorc"
|
|
include "${cfg.package}/share/nano/extra/*.nanorc"
|
|
'')
|
|
+ cfg.nanorc;
|
|
systemPackages = [ cfg.package ];
|
|
pathsToLink = [ "/share/nano" ];
|
|
};
|
|
};
|
|
}
|