14 lines
315 B
Nix
14 lines
315 B
Nix
{ 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;
|
|
};
|
|
}
|