13 lines
198 B
Nix
13 lines
198 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
wlsunset
|
|
];
|
|
wayland.windowManager.sway.config = {
|
|
startup = [
|
|
{ command = "bash ~/scripts/sunset.sh"; }
|
|
];
|
|
};
|
|
}
|