Files
home-manager/x230.nix
2024-02-04 17:06:53 +01:00

13 lines
198 B
Nix

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