2019-12-27 10:30:06 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.grobi;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
eitherStrBoolIntList = with types;
|
|
|
|
either str (either bool (either int (listOf str)));
|
2019-12-27 10:30:06 +01:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-12-27 10:30:06 +01:00
|
|
|
meta.maintainers = [ maintainers.mbrgm ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.grobi = {
|
|
|
|
enable = mkEnableOption "the grobi display setup daemon";
|
|
|
|
|
|
|
|
executeAfter = mkOption {
|
|
|
|
type = with types; listOf str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
2019-12-27 10:30:06 +01:00
|
|
|
example = [ "setxkbmap dvorak" ];
|
|
|
|
description = ''
|
|
|
|
Commands to be run after an output configuration was
|
|
|
|
changed. The Nix value declared here will be translated to
|
|
|
|
JSON and written to the <option>execute_after</option> key
|
2021-12-09 04:02:00 +01:00
|
|
|
in <filename>$XDG_CONFIG_HOME/grobi.conf</filename>.
|
2019-12-27 10:30:06 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
rules = mkOption {
|
|
|
|
type = with types; listOf (attrsOf eitherStrBoolIntList);
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2019-12-27 10:30:06 +01:00
|
|
|
[
|
|
|
|
{
|
|
|
|
name = "Home";
|
|
|
|
outputs_connected = [ "DP-2" ];
|
|
|
|
configure_single = "DP-2";
|
|
|
|
primary = true;
|
|
|
|
atomic = true;
|
|
|
|
execute_after = [
|
|
|
|
"${pkgs.xorg.xrandr}/bin/xrandr --dpi 96"
|
|
|
|
"${pkgs.xmonad-with-packages}/bin/xmonad --restart";
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Mobile";
|
|
|
|
outputs_disconnected = [ "DP-2" ];
|
|
|
|
configure_single = "eDP-1";
|
|
|
|
primary = true;
|
|
|
|
atomic = true;
|
|
|
|
execute_after = [
|
|
|
|
"${pkgs.xorg.xrandr}/bin/xrandr --dpi 120"
|
|
|
|
"${pkgs.xmonad-with-packages}/bin/xmonad --restart";
|
|
|
|
];
|
|
|
|
}
|
|
|
|
]
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
These are the rules grobi tries to match to the current
|
|
|
|
output configuration. The rules are evaluated top to bottom,
|
|
|
|
the first matching rule is applied and processing stops. See
|
|
|
|
<link xlink:href="https://github.com/fd0/grobi/blob/master/doc/grobi.conf"/>
|
|
|
|
for more information. The Nix value declared here will be
|
|
|
|
translated to JSON and written to the <option>rules</option>
|
2021-12-09 04:02:00 +01:00
|
|
|
key in <filename>$XDG_CONFIG_HOME/grobi.conf</filename>.
|
2019-12-27 10:30:06 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.grobi" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2019-12-27 10:30:06 +01:00
|
|
|
systemd.user.services.grobi = {
|
|
|
|
Unit = {
|
|
|
|
Description = "grobi display auto config daemon";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.grobi}/bin/grobi watch -v";
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = "2s";
|
|
|
|
Environment = "PATH=${pkgs.xorg.xrandr}/bin:${pkgs.bash}/bin";
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
2019-12-27 10:30:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
xdg.configFile."grobi.conf".text = builtins.toJSON {
|
|
|
|
execute_after = cfg.executeAfter;
|
|
|
|
rules = cfg.rules;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|