mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-03-17 21:27:33 +01:00
102 lines
2.4 KiB
Nix
102 lines
2.4 KiB
Nix
{
|
|
fp,
|
|
lib,
|
|
config,
|
|
values,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./disk-config.nix
|
|
(fp /base)
|
|
];
|
|
|
|
boot.consoleLogLevel = 0;
|
|
|
|
sops.defaultSopsFile = fp /secrets/skrot/skrot.yaml;
|
|
|
|
systemd.network.networks."enp2s0" = values.defaultNetworkConfig // {
|
|
matchConfig.Name = "enp2s0";
|
|
address = with values.hosts.skrot; [
|
|
(ipv4 + "/25")
|
|
(ipv6 + "/64")
|
|
];
|
|
};
|
|
|
|
sops.secrets = {
|
|
"dibbler/postgresql/password" = {
|
|
owner = "drumknotty";
|
|
group = "drumknotty";
|
|
};
|
|
"worblehat/postgresql/password" = {
|
|
owner = "drumknotty";
|
|
group = "drumknotty";
|
|
};
|
|
};
|
|
|
|
services.drumknotty = {
|
|
enable = true;
|
|
kioskMode = true;
|
|
limitScreenWidth = 80;
|
|
limitScreenHeight = 42;
|
|
|
|
dibblerSettings = {
|
|
general.quit_allowed = false;
|
|
database = {
|
|
type = "postgresql";
|
|
postgresql = {
|
|
username = "pvv_vv";
|
|
dbname = "pvv_vv";
|
|
host = "postgres.pvv.ntnu.no";
|
|
password_file = config.sops.secrets."dibbler/postgresql/password".path;
|
|
};
|
|
};
|
|
};
|
|
worblehatSettings = {
|
|
general.quit_allowed = false;
|
|
database = {
|
|
type = "postgresql";
|
|
postgresql = {
|
|
username = "pvv_vv";
|
|
dbname = "pvv_vv";
|
|
host = "postgres.pvv.ntnu.no";
|
|
password_file = config.sops.secrets."worblehat/postgresql/password".path;
|
|
};
|
|
};
|
|
};
|
|
deadline-daemon = {
|
|
enable = lib.mkEnableOption "" // {
|
|
description = ''
|
|
Whether to enable the worblehat deadline-daemon service,
|
|
which periodically checks for upcoming deadlines and notifies users.
|
|
|
|
Note that this service is independent of the main worblehat service,
|
|
and must be enabled separately.
|
|
'';
|
|
};
|
|
};
|
|
|
|
onCalendar = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = ''
|
|
How often to trigger rendering the map,
|
|
in the format of a systemd timer onCalendar configuration.
|
|
|
|
See {manpage}`systemd.timer(5)`.
|
|
'';
|
|
default = "*-*-* 10:15:00";
|
|
};
|
|
};
|
|
|
|
systemd.services."serial-getty@ttyUSB0" = lib.mkIf (!config.virtualisation.isVmVariant) {
|
|
enable = true;
|
|
wantedBy = [ "getty.target" ]; # to start at boot
|
|
serviceConfig.Restart = "always"; # restart when session is closed
|
|
};
|
|
|
|
system.stateVersion = "25.11"; # Did you read the comment? Nah bro
|
|
}
|