Compare commits

...

2 Commits

Author SHA1 Message Date
8c0ad59c3d correct hyprctl calling 2026-02-09 12:33:09 -05:00
2126a0f899 elf patching 2026-02-07 14:56:05 -05:00
2 changed files with 7 additions and 1 deletions

View File

@@ -272,6 +272,7 @@
typst # typst compilation
tinymist # typst previews
binaryninja-free # broke ahh cracker
patchelf # make programs understand nix. good for downloaded executables such as crackmes
];
};

View File

@@ -15,6 +15,11 @@
systemd.services.heat-room = {
description = "Morning room heating";
after = [ "graphical-session.target" ];
environment = {
WAYLAND_DISPLAY = "wayland-1";
XDG_RUNTIME_DIR = "/run/user/1000";
};
serviceConfig = {
Type = "oneshot";
User = "jeremy";
@@ -22,7 +27,7 @@
script = ''
${pkgs.furmark}/bin/furmark --demo furmark-gl &
sleep 1s
hyprctl dispatch dpms off
${pkgs.hyprland}/bin/hyprctl dispatch dpms off
sleep 2h
pkill furmark
'';