update goofs

This commit is contained in:
Leonardo Eugênio 2024-10-05 17:26:45 -03:00
parent f8c524bf4a
commit c8ef4abda4
5 changed files with 40 additions and 34 deletions

View file

@ -213,11 +213,11 @@
]
},
"locked": {
"lastModified": 1727977578,
"narHash": "sha256-DBORKcmQ7ZjA4qE1MsnF1MmZSokOGrw4W9vTCioOv2U=",
"lastModified": 1728109432,
"narHash": "sha256-wmbErh8FG7dRKOtMMpHUqDtFjeqt9Zjx4zssSeTalwU=",
"owner": "nix-community",
"repo": "disko",
"rev": "574400001b3ffe555c7a21e0ff846230759be2ed",
"rev": "48ebb577855fb2398653f033b3b2208a9249203d",
"type": "github"
},
"original": {
@ -453,11 +453,11 @@
]
},
"locked": {
"lastModified": 1728148016,
"narHash": "sha256-63w9Nt1bt2l7HSGHca99rcDXsk8giISsWlRhiEp1XtY=",
"lastModified": 1728159958,
"narHash": "sha256-r/h/ch70KfOQ8moftDhHagu3WajglaqU+hrEzUtTM1Y=",
"ref": "refs/heads/main",
"rev": "acd877886420f4e0b00af1548a6cbda8dc89632f",
"revCount": 2,
"rev": "96e978aa2f414d4b92b78e7ae975d7ff7db95a91",
"revCount": 3,
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/made-you-look"
},
@ -515,11 +515,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1727907660,
"narHash": "sha256-QftbyPoieM5M50WKUMzQmWtBWib/ZJbHo7mhj5riQec=",
"lastModified": 1728067476,
"narHash": "sha256-/uJcVXuBt+VFCPQIX+4YnYrHaubJSx4HoNsJVNRgANM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5966581aa04be7eff830b9e1457d56dc70a0b798",
"rev": "6e6b3dd395c3b1eb9be9f2d096383a8d05add030",
"type": "github"
},
"original": {
@ -530,11 +530,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1727802920,
"narHash": "sha256-HP89HZOT0ReIbI7IJZJQoJgxvB2Tn28V6XS3MNKnfLs=",
"lastModified": 1728018373,
"narHash": "sha256-NOiTvBbRLIOe5F6RbHaAh6++BNjsb149fGZd1T4+KBg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "27e30d177e57d912d614c88c622dcfdb2e6e6515",
"rev": "bc947f541ae55e999ffdb4013441347d83b00feb",
"type": "github"
},
"original": {
@ -595,7 +595,8 @@
"tomater": "tomater",
"vpsadminos": "vpsadminos",
"warthunder-leak-counter": "warthunder-leak-counter",
"wl-crosshair": "wl-crosshair"
"wl-crosshair": "wl-crosshair",
"youre-wrong": "youre-wrong"
}
},
"rust-analyzer-src": {
@ -874,6 +875,22 @@
"repo": "wl-crosshair",
"type": "github"
}
},
"youre-wrong": {
"flake": false,
"locked": {
"lastModified": 1728148764,
"narHash": "sha256-JhYA4YBS9Cpm4i80KK95Fg6doZhdydZ4W/bEG1M1FJU=",
"ref": "refs/heads/main",
"rev": "b206caa7b7efbd2d4b68d3a8fc50c224f6629d39",
"revCount": 1,
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/youre-wrong"
},
"original": {
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/youre-wrong"
}
}
},
"root": "root",

View file

@ -74,6 +74,10 @@
url = "git+https://git.lelgenio.com/lelgenio/tomater";
flake = false;
};
youre-wrong = {
url = "git+https://git.lelgenio.com/lelgenio/youre-wrong";
flake = false;
};
};
outputs =
inputs:

View file

@ -18,7 +18,6 @@
./writefreely.nix
./email.nix
./forgejo.nix
./warthunder-leak-counter.nix
./invidious.nix
./davi.nix
./goofs.nix

View file

@ -33,4 +33,9 @@
forceSSL = true;
root = inputs.tomater;
};
services.nginx.virtualHosts."youre-wrong.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.youre-wrong;
};
}

View file

@ -1,19 +0,0 @@
{
inputs,
pkgs,
config,
...
}:
{
imports = [ inputs.warthunder-leak-counter.nixosModules.default ];
services.warthunder-leak-counter.enable = true;
services.nginx.virtualHosts."warthunder-leak-counter.lelgenio.com" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.services.warthunder-leak-counter.port}";
};
};
}