mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
wlsunset: add module
This adds the wlsunset module, a program for day/night gamma adjustments on wayland. Fixes #1625
This commit is contained in:
parent
44f9d68d8c
commit
33407189c1
9 changed files with 151 additions and 0 deletions
3
.github/CODEOWNERS
vendored
3
.github/CODEOWNERS
vendored
|
@ -216,6 +216,9 @@
|
||||||
|
|
||||||
/modules/services/window-managers/i3-sway/sway.nix @alexarice
|
/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/xcape.nix @nickhu
|
||||||
|
|
||||||
/modules/services/xembed-sni-proxy.nix @rycee
|
/modules/services/xembed-sni-proxy.nix @rycee
|
||||||
|
|
|
@ -31,4 +31,10 @@
|
||||||
github = "olmokramer";
|
github = "olmokramer";
|
||||||
githubId = 3612514;
|
githubId = 3612514;
|
||||||
};
|
};
|
||||||
|
matrss = {
|
||||||
|
name = "Matthias Riße";
|
||||||
|
email = "matrss@users.noreply.github.com";
|
||||||
|
github = "matrss";
|
||||||
|
githubId = 9308656;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1759,6 +1759,14 @@ in
|
||||||
];
|
];
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2020-12-01T20:46:14+00:00";
|
||||||
|
condition = hostPlatform.isLinux;
|
||||||
|
message = ''
|
||||||
|
A new module is available: 'services.wlsunset'.
|
||||||
|
'';
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -192,6 +192,7 @@ let
|
||||||
(loadModule ./services/window-managers/i3-sway/i3.nix { })
|
(loadModule ./services/window-managers/i3-sway/i3.nix { })
|
||||||
(loadModule ./services/window-managers/i3-sway/sway.nix { condition = hostPlatform.isLinux; })
|
(loadModule ./services/window-managers/i3-sway/sway.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./services/window-managers/xmonad.nix { })
|
(loadModule ./services/window-managers/xmonad.nix { })
|
||||||
|
(loadModule ./services/wlsunset.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./services/xcape.nix { condition = hostPlatform.isLinux; })
|
(loadModule ./services/xcape.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./services/xembed-sni-proxy.nix { condition = hostPlatform.isLinux; })
|
(loadModule ./services/xembed-sni-proxy.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./services/xscreensaver.nix { })
|
(loadModule ./services/xscreensaver.nix { })
|
||||||
|
|
97
modules/services/wlsunset.nix
Normal file
97
modules/services/wlsunset.nix
Normal 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 ]; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -99,6 +99,7 @@ import nmt {
|
||||||
./modules/services/sxhkd
|
./modules/services/sxhkd
|
||||||
./modules/services/window-managers/i3
|
./modules/services/window-managers/i3
|
||||||
./modules/services/window-managers/sway
|
./modules/services/window-managers/sway
|
||||||
|
./modules/services/wlsunset
|
||||||
./modules/systemd
|
./modules/systemd
|
||||||
./modules/targets-linux
|
./modules/targets-linux
|
||||||
]);
|
]);
|
||||||
|
|
1
tests/modules/services/wlsunset/default.nix
Normal file
1
tests/modules/services/wlsunset/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ wlsunset-service = ./wlsunset-service.nix; }
|
|
@ -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
|
25
tests/modules/services/wlsunset/wlsunset-service.nix
Normal file
25
tests/modules/services/wlsunset/wlsunset-service.nix
Normal 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}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue