New onedrive module + various updates
This commit is contained in:
parent
d304c4c65a
commit
286f70981b
7 changed files with 68 additions and 15 deletions
|
|
@ -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
20
nixos/mind.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
ensureDatabases = [
|
||||
"mfh"
|
||||
];
|
||||
ensureUsers = [
|
||||
{
|
||||
name = "bertof";
|
||||
ensurePermissions = {
|
||||
"DATABASE \"mfh\"" = "ALL PRIVILEGES";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
services.apache-kafka = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue