wlsunset: add module

This adds the wlsunset module, a program for day/night gamma
adjustments on wayland.

Fixes #1625
This commit is contained in:
Matthias Riße 2020-11-28 01:47:35 +01:00 committed by Robert Helgesson
parent 44f9d68d8c
commit 33407189c1
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
9 changed files with 151 additions and 0 deletions

3
.github/CODEOWNERS vendored
View File

@ -216,6 +216,9 @@
/modules/services/window-managers/i3-sway/sway.nix @alexarice
/modules/services/wlsunset.nix @matrss
/tests/modules/services/wlsunset @matrss
/modules/services/xcape.nix @nickhu
/modules/services/xembed-sni-proxy.nix @rycee

View File

@ -31,4 +31,10 @@
github = "olmokramer";
githubId = 3612514;
};
matrss = {
name = "Matthias Riße";
email = "matrss@users.noreply.github.com";
github = "matrss";
githubId = 9308656;
};
}

View File

@ -1759,6 +1759,14 @@ in
];
'';
}
{
time = "2020-12-01T20:46:14+00:00";
condition = hostPlatform.isLinux;
message = ''
A new module is available: 'services.wlsunset'.
'';
}
];
};
}

View File

@ -192,6 +192,7 @@ let
(loadModule ./services/window-managers/i3-sway/i3.nix { })
(loadModule ./services/window-managers/i3-sway/sway.nix { condition = hostPlatform.isLinux; })
(loadModule ./services/window-managers/xmonad.nix { })
(loadModule ./services/wlsunset.nix { condition = hostPlatform.isLinux; })
(loadModule ./services/xcape.nix { condition = hostPlatform.isLinux; })
(loadModule ./services/xembed-sni-proxy.nix { condition = hostPlatform.isLinux; })
(loadModule ./services/xscreensaver.nix { })

View File

@ -0,0 +1,97 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.wlsunset;
in {
meta.maintainers = [ maintainers.matrss ];
options.services.wlsunset = {
enable = mkEnableOption "Whether to enable wlsunset.";
package = mkOption {
type = types.package;
default = pkgs.wlsunset;
defaultText = "pkgs.wlsunset";
description = ''
wlsunset derivation to use.
'';
};
latitude = mkOption {
type = types.str;
description = ''
Your current latitude, between <literal>-90.0</literal> and
<literal>90.0</literal>.
'';
};
longitude = mkOption {
type = types.str;
description = ''
Your current longitude, between <literal>-180.0</literal> and
<literal>180.0</literal>.
'';
};
temperature = {
day = mkOption {
type = types.int;
default = 6500;
description = ''
Colour temperature to use during the day, in Kelvin (K).
This value must be greater than <literal>temperature.night</literal>.
'';
};
night = mkOption {
type = types.int;
default = 4000;
description = ''
Colour temperature to use during the night, in Kelvin (K).
This value must be smaller than <literal>temperature.day</literal>.
'';
};
};
gamma = mkOption {
type = types.str;
default = "1.0";
description = ''
Gamma value to use.
'';
};
systemdTarget = mkOption {
type = types.str;
default = "graphical-session.target";
description = ''
Systemd target to bind to.
'';
};
};
config = mkIf cfg.enable {
systemd.user.services.wlsunset = {
Unit = {
Description = "Day/night gamma adjustments for Wayland compositors.";
PartOf = [ "graphical-session.target" ];
};
Service = {
ExecStart = let
args = [
"-l ${cfg.latitude}"
"-L ${cfg.longitude}"
"-t ${toString cfg.temperature.night}"
"-T ${toString cfg.temperature.day}"
"-g ${cfg.gamma}"
];
in "${cfg.package}/bin/wlsunset ${concatStringsSep " " args}";
};
Install = { WantedBy = [ cfg.systemdTarget ]; };
};
};
}

View File

@ -99,6 +99,7 @@ import nmt {
./modules/services/sxhkd
./modules/services/window-managers/i3
./modules/services/window-managers/sway
./modules/services/wlsunset
./modules/systemd
./modules/targets-linux
]);

View File

@ -0,0 +1 @@
{ wlsunset-service = ./wlsunset-service.nix; }

View File

@ -0,0 +1,9 @@
[Install]
WantedBy=test.target
[Service]
ExecStart=@wlsunset@/bin/wlsunset -l 12.3 -L 128.8 -t 3500 -T 6000 -g 0.6
[Unit]
Description=Day/night gamma adjustments for Wayland compositors.
PartOf=graphical-session.target

View File

@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
config = {
services.wlsunset = {
enable = true;
package = pkgs.writeScriptBin "dummy-wlsunset" "" // {
outPath = "@wlsunset@";
};
latitude = "12.3";
longitude = "128.8";
temperature.day = 6000;
temperature.night = 3500;
gamma = "0.6";
systemdTarget = "test.target";
};
nmt.script = ''
serviceFile=home-files/.config/systemd/user/wlsunset.service
assertFileExists $serviceFile
assertFileContent $serviceFile ${./wlsunset-service-expected.service}
'';
};
}