./hyprpaper.nix
./hypridle.nix
./hyprlock.nix
+ ./hyprsunset.nix
./ghostty.nix
./obsidian.nix
./fastfetch.nix
wl-clipboard
wev
obs-studio
+ # hyprsysteminfo # application to display info about hyprland
+
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# };
};
-
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
--- /dev/null
+{ config, pkgs, ... }:
+
+{
+ services.hyprsunset = {
+ enable = true;
+
+ settings = {
+ sunrise = {
+ calendar = "*-*-* 06:00:00";
+ requests = [
+ "temperature 6500"
+ "gamma 100"
+ ];
+ };
+ sunset = {
+ calendar = "*-*-* 22:00:00";
+ requests = [
+ "temperature 3500"
+ ];
+ };
+ };
+ };
+
+}