Compare commits

..

No commits in common. "09f89553b9d513ba772614f5117c235401dabace" and "6da032eae9e6c31fabca6d132400d008db4b30f4" have entirely different histories.

3 changed files with 11 additions and 26 deletions

View file

@ -59,22 +59,6 @@
LC_TIME = "hr_HR.UTF-8";
};
# Setup bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
hardware.bluetooth.settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
# Setup dbus broker
services.dbus = {
enable = true;
implementation = "broker";
};
# Enable seatd
services.seatd.enable = true;

View file

@ -73,6 +73,12 @@
'';
playerctl = "${pkgs.playerctl}/bin/playerctl";
hypr-fix-vrr = pkgs.writeShellScriptBin "hypr-fix-vrr" ''
#!/usr/bin/env sh
hyprctl --batch "keyword cursor:no_break_fs_vrr 0; keyword cursor:no_hardware_cursors 0"
sleep 1
hyprctl --batch "keyword cursor:no_break_fs_vrr 1; keyword cursor:no_hardware_cursors 1"
'';
in {
options = {
crony.hyprland.enable = lib.mkEnableOption "Enable hyprland and configure it for me";
@ -111,7 +117,7 @@ in {
{
timeout = 10; # 10 sec
on-timeout = "pidof hyprlock && hyprctl dispatch dpms off"; # Turn off screen if hyprlock is running
on-resume = "hyprctl dispatch dpms on"; # Turn on screen when activiy is detected after timeout has fired
on-resume = "hyprctl dispatch dpms on && ${hypr-fix-vrr}/bin/hypr-fix-vrr"; # Turn on screen when activiy is detected after timeout has fired
}
{
timeout = 300; # 5min
@ -120,7 +126,7 @@ in {
{
timeout = 310; # 5min and 10 sec
on-timeout = "hyprctl dispatch dpms off"; # Turn off screen if hyprlock is running
on-resume = "hyprctl dispatch dpms on"; # Turn on screen when activiy is detected after timeout has fired
on-resume = "hyprctl dispatch dpms on && ${hypr-fix-vrr}/bin/hypr-fix-vrr"; # Turn on screen when activiy is detected after timeout has fired
}
];
};
@ -152,13 +158,13 @@ in {
# Fix laptop monitor getting turned on while my external monitor connected
"hyprctl monitors | grep 'HDMI' && hyprctl keyword monitor 'eDP-1, disable'"
"pkill waybar; waybar" # Kill waybar and start new instance because everytime hyprland restarts breaks waybar
"${hypr-fix-vrr}/bin/hypr-fix-vrr"
];
cursor = {
# Breaks mouse in fullscreen
# no_break_fs_vrr = 1;
no_break_fs_vrr = 1;
no_hardware_cursors = 1;
# use_cpu_buffer = 0;
use_cpu_buffer = 0;
};
exec-once = [

View file

@ -5,13 +5,8 @@
ports = [
"8123:8123"
];
capabilities = {
NET_ADMIN = true;
NET_RAW = true;
};
volumes = [
"/var/lib/homeassistant:/config"
"/run/dbus:/run/dbus:ro"
];
environment = {
TZ = "Europe/Berlin";