Added powermenu

This commit is contained in:
2026-02-26 23:51:50 +01:00
parent 2d4bf57ee7
commit 76ec2c05d3
6 changed files with 420 additions and 324 deletions
+13
View File
@@ -0,0 +1,13 @@
{ config, lib, pkgs, flakeRoot, ... }:
let
repoScript =
flakeRoot + "/assets/conf/desktop/hypr/scripts/powermenu.sh";
targetRel = "hypr/scripts/powermenu.sh";
in
{
# Ensure script exists in ~/.config/hypr/scripts/
xdg.configFile."${targetRel}" = {
source = repoScript;
executable = true;
};
}