1
0
Fork 0

Move BOINC from K3s to Nix

This commit is contained in:
Aires 2024-05-17 18:18:47 -04:00
parent 6335f5bb3a
commit ef7159bdc6
3 changed files with 10 additions and 4 deletions

View file

@ -150,11 +150,11 @@
]
},
"locked": {
"lastModified": 1715486357,
"narHash": "sha256-4pRuzsHZOW5W4CsXI9uhKtiJeQSUoe1d2M9mWU98HC4=",
"lastModified": 1715930644,
"narHash": "sha256-W9pyM3/vePxrffHtzlJI6lDS3seANQ+Nqp+i58O46LI=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "44677a1c96810a8e8c4ffaeaad10c842402647c1",
"rev": "e3ad5108f54177e6520535768ddbf1e6af54b59d",
"type": "github"
},
"original": {

View file

@ -44,6 +44,12 @@ in
};
};
# Enable BOINC (distributed research computing)
services.boinc = {
enable = true;
dataDir = "/var/lib/boinc";
};
# Enable SSH
services.openssh = {
enable = true;

View file

@ -81,7 +81,7 @@ with lib;
git = {
enable = true;
userName = config.secrets.users.aires.firstName;
userEmail = config.secrets.users.aires.email;
userEmail = config.secrets.users.gremlin.email;
extraConfig = {
push.autoSetupRemote = "true";
};