flake fix absolute paths

This commit is contained in:
nekohepott 2026-06-17 04:16:25 +03:00
parent c9c617a1f0
commit 2e76e1f6eb
No known key found for this signature in database

View File

@ -15,8 +15,13 @@
buildGoApplication { buildGoApplication {
pname = "goGoFetch"; pname = "goGoFetch";
version = "0.1"; version = "1.0";
pwd = ./.; pwd = ./.;
src = ./.; src = ./.;
modules = ./gomod2nix.toml; modules = ./gomod2nix.toml;
postInstall = ''
mkdir -p $out/share/gogofetch/assets
cp -r assets/*.png $out/share/gogofetch/assets/
'';
} }