switch from stable as default to unstable as default

This commit is contained in:
TheWanderingCrow 2026-04-02 15:34:12 -04:00
parent 2129e60782
commit 4264f92c19
25 changed files with 61 additions and 201 deletions

View file

@ -6,7 +6,7 @@
{
environment.systemPackages = builtins.attrValues {
inherit (pkgs.unstable)
inherit (pkgs)
monero-gui
monero-cli
p2pool
@ -32,7 +32,7 @@
serviceConfig = {
User = "p2pool";
Group = "p2pool";
ExecStart = "${pkgs.unstable.p2pool}/bin/p2pool --host 127.0.0.1 --wallet 48kwCPHhnbXfriMCtGHu4BRrc8dwmhUxVdD1ycATtDigW4Fjrsfhi7wQ2QSNyvspxaN7Tt2dApAEbFhTeSPD9w1x4JmyzTg --nano";
ExecStart = "${pkgs.p2pool}/bin/p2pool --host 127.0.0.1 --wallet 48kwCPHhnbXfriMCtGHu4BRrc8dwmhUxVdD1ycATtDigW4Fjrsfhi7wQ2QSNyvspxaN7Tt2dApAEbFhTeSPD9w1x4JmyzTg --nano";
Restart = "always";
};
};

View file

@ -6,7 +6,7 @@
}:
{
environment.systemPackages = builtins.attrValues {
inherit (pkgs.unstable)
inherit (pkgs)
monero-cli
;
};
@ -39,7 +39,7 @@
{
User = "monero";
Group = "monero";
ExecStart = "${pkgs.unstable.monero-cli}/bin/monerod --config-file=${moneroConfig} --non-interactive";
ExecStart = "${pkgs.monero-cli}/bin/monerod --config-file=${moneroConfig} --non-interactive";
Restart = "always";
SuccessExitStatus = [
0