mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
139 lines
3.8 KiB
Nix
139 lines
3.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.redshift;
|
|
lcfg = config.location;
|
|
|
|
in {
|
|
|
|
imports = [
|
|
(mkChangedOptionModule [ "services" "redshift" "latitude" ] [ "location" "latitude" ]
|
|
(config:
|
|
let value = getAttrFromPath [ "services" "redshift" "latitude" ] config;
|
|
in if value == null then
|
|
throw "services.redshift.latitude is set to null, you can remove this"
|
|
else builtins.fromJSON value))
|
|
(mkChangedOptionModule [ "services" "redshift" "longitude" ] [ "location" "longitude" ]
|
|
(config:
|
|
let value = getAttrFromPath [ "services" "redshift" "longitude" ] config;
|
|
in if value == null then
|
|
throw "services.redshift.longitude is set to null, you can remove this"
|
|
else builtins.fromJSON value))
|
|
(mkRenamedOptionModule [ "services" "redshift" "provider" ] [ "location" "provider" ])
|
|
];
|
|
|
|
options.services.redshift = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Enable Redshift to change your screen's colour temperature depending on
|
|
the time of day.
|
|
'';
|
|
};
|
|
|
|
temperature = {
|
|
day = mkOption {
|
|
type = types.int;
|
|
default = 5500;
|
|
description = lib.mdDoc ''
|
|
Colour temperature to use during the day, between
|
|
`1000` and `25000` K.
|
|
'';
|
|
};
|
|
night = mkOption {
|
|
type = types.int;
|
|
default = 3700;
|
|
description = lib.mdDoc ''
|
|
Colour temperature to use at night, between
|
|
`1000` and `25000` K.
|
|
'';
|
|
};
|
|
};
|
|
|
|
brightness = {
|
|
day = mkOption {
|
|
type = types.str;
|
|
default = "1";
|
|
description = lib.mdDoc ''
|
|
Screen brightness to apply during the day,
|
|
between `0.1` and `1.0`.
|
|
'';
|
|
};
|
|
night = mkOption {
|
|
type = types.str;
|
|
default = "1";
|
|
description = lib.mdDoc ''
|
|
Screen brightness to apply during the night,
|
|
between `0.1` and `1.0`.
|
|
'';
|
|
};
|
|
};
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.redshift;
|
|
defaultText = literalExpression "pkgs.redshift";
|
|
description = lib.mdDoc ''
|
|
redshift derivation to use.
|
|
'';
|
|
};
|
|
|
|
executable = mkOption {
|
|
type = types.str;
|
|
default = "/bin/redshift";
|
|
example = "/bin/redshift-gtk";
|
|
description = lib.mdDoc ''
|
|
Redshift executable to use within the package.
|
|
'';
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
example = [ "-v" "-m randr" ];
|
|
description = lib.mdDoc ''
|
|
Additional command-line arguments to pass to
|
|
{command}`redshift`.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
# needed so that .desktop files are installed, which geoclue cares about
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
services.geoclue2.appConfig.redshift = {
|
|
isAllowed = true;
|
|
isSystem = true;
|
|
};
|
|
|
|
systemd.user.services.redshift =
|
|
let
|
|
providerString = if lcfg.provider == "manual"
|
|
then "${toString lcfg.latitude}:${toString lcfg.longitude}"
|
|
else lcfg.provider;
|
|
in
|
|
{
|
|
description = "Redshift colour temperature adjuster";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
serviceConfig = {
|
|
ExecStart = ''
|
|
${cfg.package}${cfg.executable} \
|
|
-l ${providerString} \
|
|
-t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \
|
|
-b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \
|
|
${lib.strings.concatStringsSep " " cfg.extraOptions}
|
|
'';
|
|
RestartSec = 3;
|
|
Restart = "always";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|