We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c310c4c commit 6b33212Copy full SHA for 6b33212
nix/module.nix
@@ -65,7 +65,7 @@ self:
65
Group = "mbwebsite";
66
DynamicUser = "yes";
67
68
- ExecStart = "${cfg.package}";
+ ExecStart = "${lib.getExe cfg.package}";
69
Restart = "on-failure";
70
71
EnvironmentFile = [ cfg.environmentFile ];
@@ -80,4 +80,4 @@ self:
80
};
81
82
83
-}
+}
nix/package.nix
@@ -105,6 +105,9 @@ stdenvNoCC.mkDerivation (finalAttrs: {
105
'';
106
107
meta = {
108
- # TODO
+ description = "Moulberry's Bush Website";
109
+ homepage = "https://github.com/NotEnoughUpdates/website";
110
+ license = lib.licenses.cc0;
111
+ mainProgram = "website";
112
-})
113
+})
0 commit comments