14 lines
333 B
Nix
14 lines
333 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 = lib.mkForce repoScript;
|
|
executable = true;
|
|
};
|
|
}
|