added github-runner

This commit is contained in:
Giulio De Pasquale 2021-11-21 11:37:18 +01:00
parent 5a8050ed2c
commit 9ff2e78681
3 changed files with 14 additions and 10 deletions

18
flake.lock generated
View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1634544068, "lastModified": 1637019201,
"narHash": "sha256-RlRQBaAHfdWqfRyHdWuDPMkplBTYwuyDQqDcNbP/Sog=", "narHash": "sha256-lq4gz51fx4m5FXfx1SCB444aEBeaYtLMVm3P18Wi9ls=",
"owner": "rycee", "owner": "rycee",
"repo": "home-manager", "repo": "home-manager",
"rev": "ff2bed9dac84fb202bbb3c49fdcfe30c29d0b12f", "rev": "bcf03fa16a1f06b8a0abb27bf49afa8d6fffe8f1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1636800699, "lastModified": 1637155076,
"narHash": "sha256-SwbyVxXffu3G2ulJIbTf0iQfqhbGbdml4Dyv5j9BiAI=", "narHash": "sha256-26ZPNiuzlsnXpt55Q44+yzXvp385aNAfevzVEKbrU5Q=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2fa862644fc15ecb525eb8cd0a60276f1c340c7c", "rev": "715f63411952c86c8f57ab9e3e3cb866a015b5f2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1636792033, "lastModified": 1636944046,
"narHash": "sha256-5RwKd3+OolhWAPUQG9SNoptr9eks8j2oukKgjAo5NQA=", "narHash": "sha256-74KLDsiWSBsYXKj/ql9EGbw1TbIJRE7clFkhl30HV/c=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "68d4f5970b69b0fd0a95c57c8d0ab4b2b68fb9aa", "rev": "46251a79f752ae1d46ef733e8e9760b6d3429da4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -124,6 +124,9 @@ in
opengl.driSupport = true; opengl.driSupport = true;
}; };
boot.crashDump.enable = true;
services.das_watchdog.enable = true;
services = { services = {
zfs.autoScrub.enable = true; zfs.autoScrub.enable = true;
xserver.videoDrivers = [ "nvidia" ]; xserver.videoDrivers = [ "nvidia" ];

View File

@ -3,7 +3,8 @@
{ {
services.github-runner = { services.github-runner = {
enable = true; enable = true;
url = "https://github.com/ropfuscator/ropfuscator"; url = "https://github.com/ropfuscator";
tokenFile = "/secrets/github-runner/token"; tokenFile = "/secrets/github-runner/token";
replace = true;
}; };
} }