mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

- Replace wlsunset with hyprsunset for better Hyprland integration - Add temperature adjustment functions with scroll support in Waybar - Implement persistent temperature storage in `~/.cache/hyprsunset_temp` - Add temperature bounds (2000K-6500K) with 100K increment/decrement steps - Update NixOS configuration to include hyprsunset package Fixes temperature persistence and improves Hyprland compatibility
10 lines
120 B
Nix
10 lines
120 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.light.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
brightnessctl
|
|
];
|
|
}
|