Added Gammastep for redshifting

This commit is contained in:
James Patrick 2022-03-07 23:35:44 -05:00
parent e4b8dec303
commit be0749de49
2 changed files with 44 additions and 1 deletions

View File

@ -1 +1,3 @@
{ config, pkgs, ... }: { imports = [ ./sway.nix ./mako.nix ./waybar.nix ]; }
{ config, pkgs, ... }: {
imports = [ ./sway.nix ./gammastep.nix ./mako.nix ./waybar.nix ];
}

View File

@ -0,0 +1,41 @@
{ options, config, lib, pkgs, ... }:
let
cfg = config.this.application.gammastep;
sway = config.this.application.sway;
in with lib; {
options = {
this.application.gammastep = {
enable = mkOption {
default = sway.enable;
type = with types; bool;
};
};
};
config = mkIf cfg.enable {
home-manager.users.james = {
services.gammastep = {
enable = true;
provider = "geoclue2";
tray = true;
};
};
services.geoclue2.enable = true;
systemd.user.services.gammastep = {
enable = true;
description = "Nightly color shifting";
wantedBy = [ "sway-session.target" ];
partOf = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = ''
${pkgs.gammastep}/bin/gammastep
'';
RestartSec = 5;
Restart = "always";
};
};
};
}