Compare commits
1 Commits
master
...
3f444a392d
| Author | SHA1 | Date | |
|---|---|---|---|
|
3f444a392d
|
14
README.org
14
README.org
@@ -1,17 +1,3 @@
|
|||||||
* Unit
|
* Unit
|
||||||
|
|
||||||
Declarative configuration for the main server, using [[https://nixos.org][NixOS]]
|
Declarative configuration for the main server, using [[https://nixos.org][NixOS]]
|
||||||
|
|
||||||
** Modules
|
|
||||||
|
|
||||||
The configuration is sliced into different files, per category:
|
|
||||||
|
|
||||||
- ZFS pool configuration: hardware-configuration.nix
|
|
||||||
- Network configuration: networking.nix
|
|
||||||
- Synchronization and backup services: datasync.nix
|
|
||||||
- Web services and reverse proxy: webstack.nix
|
|
||||||
- Smartd: monitoring.nix
|
|
||||||
- Systemd services and timers: periodic.nix
|
|
||||||
- Virtual machines: virtualization.nix
|
|
||||||
|
|
||||||
All the modules are imported in *configuration.nix*
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
services.samba = {
|
services.samba = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nsswins = true;
|
nsswins = true;
|
||||||
|
syncPasswordsByPam = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
workgroup = WORKGROUP
|
workgroup = WORKGROUP
|
||||||
server string = unit
|
server string = unit
|
||||||
|
|||||||
@@ -43,13 +43,18 @@
|
|||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/vault/backups" =
|
||||||
|
{ device = "vault/backups";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
fileSystems."/vault/VMs" =
|
fileSystems."/vault/VMs" =
|
||||||
{ device = "vault/VMs";
|
{ device = "vault/VMs";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/vault/backups" =
|
fileSystems."/vault/code" =
|
||||||
{ device = "vault/backups";
|
{ device = "vault/code";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -58,8 +63,8 @@
|
|||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/vault/code" =
|
fileSystems."/vault/config" =
|
||||||
{ device = "vault/code";
|
{ device = "vault/config";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -73,33 +78,23 @@
|
|||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/vault/backups/wordpress" =
|
|
||||||
{ device = "vault/backups/wordpress";
|
|
||||||
fsType = "zfs";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/vault/backups/frontend" =
|
|
||||||
{ device = "vault/backups/frontend";
|
|
||||||
fsType = "zfs";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/vault/backups/documents" =
|
fileSystems."/vault/backups/documents" =
|
||||||
{ device = "vault/backups/documents";
|
{ device = "vault/backups/documents";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/vault/config" =
|
|
||||||
{ device = "vault/config";
|
|
||||||
fsType = "zfs";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/vault/VMs/legacy" =
|
fileSystems."/vault/VMs/legacy" =
|
||||||
{ device = "vault/VMs/legacy";
|
{ device = "vault/VMs/legacy";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/vault/frontend" =
|
fileSystems."/vault/backups/frontend" =
|
||||||
{ device = "vault/frontend";
|
{ device = "vault/backups/frontend";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/vault/backups/wordpress" =
|
||||||
|
{ device = "vault/backups/wordpress";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -103,11 +103,6 @@ in {
|
|||||||
publicKey = "5DU9ipxJcut2wKrUr3yQux9crzXMSW4ZeKWFLRpUc1I=";
|
publicKey = "5DU9ipxJcut2wKrUr3yQux9crzXMSW4ZeKWFLRpUc1I=";
|
||||||
allowedIPs = [ "10.9.0.4/32" ];
|
allowedIPs = [ "10.9.0.4/32" ];
|
||||||
}
|
}
|
||||||
# manuela
|
|
||||||
{
|
|
||||||
publicKey = "V+DaOya2hLuV6C9BeCkDyFqXpPAFq9jMAeg1dvQw/FI=";
|
|
||||||
allowedIPs = [ "10.9.0.5/32" ];
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -146,7 +141,7 @@ in {
|
|||||||
bogus-priv
|
bogus-priv
|
||||||
no-resolv
|
no-resolv
|
||||||
|
|
||||||
listen-address=127.0.0.1,10.0.1.3
|
listen-address=127.0.0.1,10.0.1.3,10.9.0.1
|
||||||
bind-interfaces
|
bind-interfaces
|
||||||
|
|
||||||
cache-size=10000
|
cache-size=10000
|
||||||
|
|||||||
@@ -15,8 +15,16 @@ in {
|
|||||||
cd "$base_folder" || exit
|
cd "$base_folder" || exit
|
||||||
ls | xargs -P10 -I{} git -C {} pull --rebase
|
ls | xargs -P10 -I{} git -C {} pull --rebase
|
||||||
'';
|
'';
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig = { Type = "oneshot"; };
|
||||||
startAt = "22:00:00";
|
};
|
||||||
|
|
||||||
|
systemd.user.timers.git-pull = {
|
||||||
|
description = "Daily code update";
|
||||||
|
wantedBy = [ "default.target" ];
|
||||||
|
timerConfig = {
|
||||||
|
OnCalendar = "22:00:00";
|
||||||
|
Unit = "git-pull.service";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# PostgreSQL daily backups
|
# PostgreSQL daily backups
|
||||||
@@ -39,7 +47,14 @@ in {
|
|||||||
chown -R dnsmasq ${stateDir}
|
chown -R dnsmasq ${stateDir}
|
||||||
systemctl restart dnsmasq
|
systemctl restart dnsmasq
|
||||||
'';
|
'';
|
||||||
startAt = "02:00:00";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.timers.download-dns-blocklist = {
|
||||||
|
description = "Daily download of hosts-blocklists";
|
||||||
|
wantedBy = [ "default.target" ];
|
||||||
|
timerConfig = {
|
||||||
|
OnCalendar = "02:00:00";
|
||||||
|
Unit = "download-dns-blocklist.service";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,4 +68,7 @@
|
|||||||
host all all ::1/128 trust
|
host all all ::1/128 trust
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Restart reverse proxy after services startup
|
||||||
|
systemd.services.nginx.after = [ "nextcloud.service" ];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ sybase_service() {
|
|||||||
|
|
||||||
perform_backup() {
|
perform_backup() {
|
||||||
zip -r BBDD_"$(date +"%d%m%Y")".zip /opt/sybase
|
zip -r BBDD_"$(date +"%d%m%Y")".zip /opt/sybase
|
||||||
scp -i /root/.ssh/unit BBDD_"$(date +"%d%m%Y")".zip coace@192.168.122.1:/vault/backups/databases/sica
|
scp BBDD_"$(date +"%d%m%Y")".zip -i /root/.ssh/unit coace@192.168.122.1:/vault/backups/databases/sica
|
||||||
}
|
}
|
||||||
|
|
||||||
cleanup() {
|
cleanup() {
|
||||||
|
|||||||
Reference in New Issue
Block a user