about summary refs log tree commit diff
path: root/flake.nix
blob: 47ab31d78794d45b9b2fa55403f0b05ae9e3ee75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
  inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
  inputs.flake-utils.url = "github:numtide/flake-utils";

  outputs = { self, nixpkgs, flake-utils }:
      let
        pkgs = nixpkgs.legacyPackages.x86_64-linux;
      in
      {
         packages.x86_64-linux = {
            bots = pkgs.buildDotnetModule rec {
              pname = "botcore-v${version}";
              version = "4";
              dotnet-sdk = pkgs.dotnet-sdk_7;
              dotnet-runtime = pkgs.dotnet-runtime_7;
              src = ./.;
              projectFile = [
                "BotCore.Runner/BotCore.Runner.csproj"
                "BotCore.SystemdServiceInvoker/BotCore.SystemdServiceInvoker.csproj"
               ];
              runtimeDeps = with pkgs; [ yt-dlp ];
              nugetDeps = ./deps.nix;
              #nativeBuildInputs = with pkgs; [
              #  pkg-config
              #];
            };
            web = pkgs.buildDotnetModule rec {
              pname = "MatrixRoomUtils.Web-v${version}";
              version = "1";
              dotnet-sdk = pkgs.dotnet-sdk_7;
              dotnet-runtime = pkgs.dotnet-aspnetcore_7;
              src = ./.;
              projectFile = [
                "MatrixRoomUtils.Web/MatrixRoomUtils.Web.csproj"
               ];
              nugetDeps = MatrixRoomUtils.Web/deps.nix;
              #nativeBuildInputs = with pkgs; [
              #  pkg-config
              #];
            };
            dataupdater = pkgs.buildDotnetModule rec {
              pname = "botcore-v${version}";
              version = "4";
              dotnet-sdk = pkgs.dotnet-sdk_7;
              dotnet-runtime = pkgs.dotnet-runtime_7;
              src = ./.;
              projectFile = [
                "BotCore.DataUpdater/BotCore.DataUpdater.csproj"
               ];
              nugetDeps = ./deps.nix;
              #nativeBuildInputs = with pkgs; [
              #  pkg-config
              #];
            };
            all = pkgs.buildDotnetModule rec {
              pname = "botcore-v${version}";
              version = "4";
              dotnet-sdk = pkgs.dotnet-sdk_7;
              dotnet-runtime = pkgs.dotnet-runtime_7;
              src = ./.;
              projectFile = "DiscordBots.sln";
              nugetDeps = ./deps.nix;
              #nativeBuildInputs = with pkgs; [
              #  pkg-config
              #];
            };
        };
        modules = {
          users = {
            users.users.botcore = {
              isSystemUser = true;
              home = "/var/lib/botcore";
              createHome = true;
              group = "botcore";
              extraGroups = [ "video" ];
            };
            users.groups.botcore = {};
            security.polkit.extraConfig = ''
              polkit.addRule(function(action, subject) {
                if (action.id == "org.freedesktop.systemd1.manage-units" &&
                    action.lookup("unit").startsWith("botcore.") &&
                    subject.user == "botcore") {
                  return polkit.Result.YES;
                }
              });
              '';
          };
          bots = {
              systemd.services = {
                  "botcore.bot@" = {
                    serviceConfig = {
                      ExecStart = "${self.packages.x86_64-linux.bots}/bin/BotCore.Runner %i";
                      Restart = "always";
                      RestartSec = "5";
                      User = "botcore";
                    };
                  };
                  "botcore.systemdserviceinvoker" = {
                    wantedBy = [ "multi-user.target" ];
                    serviceConfig = {
                      ExecStart = "${self.packages.x86_64-linux.bots}/bin/BotCore.SystemdServiceInvoker";
                      User = "botcore";
                    };
                  };
              };
          };
            frontend = {
                systemd.services = {
                    "botcore.web" = {
                        wantedBy = [ "multi-user.target" ];
                        serviceConfig = {
                            ExecStart = "${self.packages.x86_64-linux.frontend}/bin/BotCore.Web.Legacy";
                            Restart = "always";
                            RestartSec = "5";
                            User = "botcore";
                        };
                    };
                };
            };
            dataupdater = {
                systemd.services = {
                    "botcore.dataupdater" = {
                        wantedBy = [ "multi-user.target" ];
                        serviceConfig = {
                            ExecStart = "${self.packages.x86_64-linux.dataupdater}/bin/BotCore.DataUpdater";
                            Restart = "always";
                            RestartSec = "15min";
                            User = "botcore";
                        };
                    };
                };
            };
        };
    };
}