mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
15 lines
272 B
Nix
15 lines
272 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.desktop.sway.redShift {
|
|
home.packages = with pkgs; [gammastep];
|
|
|
|
wayland.windowManager.sway.config.startup = [
|
|
{command = "${lib.getExe pkgs.gammastep} -l 33.74:-84.38";}
|
|
];
|
|
};
|
|
}
|