New onedrive module + various updates

This commit is contained in:
Filippo Berto 2021-09-13 16:06:18 +02:00
parent d304c4c65a
commit 286f70981b
7 changed files with 68 additions and 15 deletions

View file

@ -7,6 +7,7 @@
./pentablet.nix
./pro_audio.nix
./defcon.nix
./mind.nix
];
# Use the systemd-boot EFI boot loader.
@ -220,6 +221,12 @@
# };
};
# SMART
services.smartd = {
enable = true;
notifications.x11.enable = true;
};
# Clamav
services.clamav = { daemon.enable = true; updater.enable = true; };

20
nixos/mind.nix Normal file
View file

@ -0,0 +1,20 @@
{
services.postgresql = {
enable = true;
ensureDatabases = [
"mfh"
];
ensureUsers = [
{
name = "bertof";
ensurePermissions = {
"DATABASE \"mfh\"" = "ALL PRIVILEGES";
};
}
];
};
services.apache-kafka = {
enable = true;
};
}