finding hyprland.conf error

This commit is contained in:
2026-03-15 12:09:35 +00:00
parent af6cfedacd
commit 84966cbeb1
+5 -3
View File
@@ -40,9 +40,11 @@ in
// hyprlandConfs; // hyprlandConfs;
}; };
# Manually copy files using a shell command # Create a derivation to copy files
system.activationScripts.copyHyprlandFiles = '' environment.systemPackages = with pkgs; [
(pkgs.writeShellScriptBin "copy-hyprland-files" ''
mkdir -p ~/.config/hypr/ mkdir -p ~/.config/hypr/
cp ${flakeRoot}/assets/hyprland/conf/hypr/* ~/.config/hypr/ cp ${flakeRoot}/assets/hyprland/conf/hypr/* ~/.config/hypr/
''; '')
];
} }