Files
nixos/henrovnix_ok/home/desktop/powermenu.nix
T
2026-03-01 18:14:35 +01:00

14 lines
321 B
Nix

{ config, lib, pkgs, flakeRoot, ... }:
let
repoScript =
flakeRoot.outPath + "/assets/conf/desktop/hypr/scripts/powermenu.sh";
targetRel = ".config/hypr/scripts/powermenu.sh";
in
{
# Ensure script exists in ~/.config/hypr/scripts/
home.file."${targetRel}" = {
source = repoScript;
executable = true;
};
}