mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 21:23:55 -05:00
13 lines
299 B
Nix
13 lines
299 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf config.alyraffauf.desktop.sway.redShift {
|
||
|
home.packages = with pkgs; [gammastep];
|
||
|
wayland.windowManager.sway.config.startup = [
|
||
|
{command = "${lib.getExe pkgs.gammastep} -l 31.1:-94.1";} # TODO: automatic locations
|
||
|
];
|
||
|
};
|
||
|
}
|