]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - flakes/private/paste/flake.nix
Squash changes containing private information
[perso/Immae/Config/Nix.git] / flakes / private / paste / flake.nix
CommitLineData
a9f52ec5 1{
1a64deeb 2 inputs.paste.url = "path:../../paste";
a9f52ec5
IB
3
4 description = "Private configuration for paste";
1a64deeb
IB
5 outputs = { self, paste }: {
6 nixosModule = self.nixosModules.paste;
7 nixosModules.paste = { ... }: {
8 imports = [
9 paste.nixosModule
10 ];
11 config = {
12 services.paste = {
13 enable = true;
14 webDirectory = "/paste";
a9f52ec5
IB
15 };
16 };
1a64deeb
IB
17 };
18 };
a9f52ec5
IB
19}
20