snowflake/home/wayland/hyprland/default.nix

20 lines
335 B
Nix
Raw Normal View History

2023-09-16 18:54:31 -04:00
_: {
2023-07-21 09:04:06 -04:00
imports = [
2023-08-29 17:48:57 -04:00
./config.nix
2023-07-21 09:04:06 -04:00
];
2023-02-05 09:06:16 -05:00
wayland.windowManager.hyprland = {
enable = true;
2023-07-21 09:04:06 -04:00
systemdIntegration = true;
xwayland.enable = true;
2023-02-05 09:06:16 -05:00
};
2023-12-07 02:26:03 -05:00
services.wlsunset = {
2023-12-09 01:41:14 -05:00
enable = false;
2023-12-07 02:26:03 -05:00
latitude = "40.712776";
longitude = "-74.005974";
temperature = {
day = 6500;
night = 3200;
};
};
2023-04-23 17:45:37 -04:00
}