alpha
Login
or
Join now
yemou.pink
/
nix-configs
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Nix configurations for my homelab
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
river: fix postInstall steps
author
yemou
date
11 months ago
(Jul 31, 2025, 6:40 AM -0400)
commit
9b187cf8
9b187cf8a2a1200c4ff83e925edbdc714579fa77
parent
35794b92
35794b92d2e119ecb3652edc742fc5e2e2cfc776
+4
-1
1 changed file
Expand all
Collapse all
Unified
Split
modules
gui.nix
+4
-1
modules/gui.nix
Reviewed
···
68
68
enable = true;
69
69
package = pkgs.river.overrideAttrs (
70
70
final: prev: {
71
71
-
postInstall = ''echo 'DesktopNames=river;wlroots' >> contrib/river.desktop'' + prev.postInstall;
71
71
+
postInstall = ''
72
72
+
echo 'DesktopNames=river;wlroots' >> contrib/river.desktop
73
73
+
${prev.postInstall}
74
74
+
'';
72
75
}
73
76
);
74
77
# TODO: Move organize these some how