Zoneminder
This commit is contained in:
parent
30ed635927
commit
cb88eef2a2
4 changed files with 90 additions and 43 deletions
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
boot = {
|
||||
binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
|
||||
kernelPackages = pkgs.linuxPackages_5_17;
|
||||
kernelPackages = pkgs.linuxPackages_5_18;
|
||||
loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
|
|
@ -24,12 +24,13 @@
|
|||
enableRedistributableFirmware = true;
|
||||
|
||||
nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
||||
nvidia.prime = {
|
||||
offload.enable = false;
|
||||
sync.enable = true;
|
||||
intelBusId = "PCI:0:2:0";
|
||||
nvidiaBusId = "PCI:1:0:0";
|
||||
};
|
||||
nvidia.nvidiaPersistenced = true;
|
||||
# nvidia.prime = {
|
||||
# offload.enable = false;
|
||||
# sync.enable = true;
|
||||
# intelBusId = "PCI:0:2:0";
|
||||
# nvidiaBusId = "PCI:1:0:0";
|
||||
# };
|
||||
|
||||
opengl = {
|
||||
enable = true;
|
||||
|
|
@ -109,19 +110,19 @@
|
|||
}; in
|
||||
{
|
||||
bertof = common // {
|
||||
path = "/mnt/raid/bertof";
|
||||
path = "/mnt/raid0/bertof";
|
||||
comment = "Bertof samba share";
|
||||
"force user" = "bertof";
|
||||
"valid users" = "bertof";
|
||||
};
|
||||
tiziano = common // {
|
||||
path = "/mnt/raid/tiziano";
|
||||
path = "/mnt/raid0/tiziano";
|
||||
comment = "Tiziano samba share";
|
||||
"force user" = "tiziano";
|
||||
"valid users" = "tiziano";
|
||||
};
|
||||
condiviso = common // {
|
||||
path = "/mnt/raid/condiviso";
|
||||
path = "/mnt/raid0/condiviso";
|
||||
comment = "Samba share condiviso";
|
||||
"valid users" = "bertof tiziano";
|
||||
"create mask" = "0770";
|
||||
|
|
@ -160,18 +161,31 @@
|
|||
openFirewall = true;
|
||||
group = "users";
|
||||
settings = {
|
||||
download-dir = "/mnt/raid/condiviso/Scaricati/Torrent";
|
||||
incomplete-dir = "/mnt/raid/condiviso/Scaricati/Torrent/.incomplete";
|
||||
download-dir = "/mnt/raid0/condiviso/Scaricati/Torrent";
|
||||
incomplete-dir = "/mnt/raid0/condiviso/Scaricati/Torrent/.incomplete";
|
||||
};
|
||||
};
|
||||
xserver = {
|
||||
enable = true;
|
||||
# enable = true;
|
||||
videoDrivers = [ "nvidia" ];
|
||||
layout = "it";
|
||||
xkbOptions = "eurosign:e;";
|
||||
libinput.enable = true;
|
||||
# layout = "it";
|
||||
# xkbOptions = "eurosign:e;";
|
||||
# libinput.enable = true;
|
||||
};
|
||||
zerotierone = { enable = true; joinNetworks = [ "8056c2e21cf9c753" ]; };
|
||||
|
||||
zoneminder = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
cameras = 3;
|
||||
hostname = "0.0.0.0";
|
||||
database = { username = "zoneminder"; createLocally = true; };
|
||||
};
|
||||
|
||||
mysql = {
|
||||
# enable = true;
|
||||
ensureUsers = [{ name = "bertof"; ensurePermissions = { "*.*" = "ALL PRIVILEGES"; }; }];
|
||||
};
|
||||
};
|
||||
|
||||
users.users = {
|
||||
|
|
@ -233,11 +247,11 @@
|
|||
{
|
||||
syncthing-bertof = common // {
|
||||
description = "Syncthing service bertof";
|
||||
serviceConfig = { User = "bertof"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -gui-address=0.0.0.0:8384 -home=/mnt/raid/bertof/Syncthing/.config"; };
|
||||
serviceConfig = { User = "bertof"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -gui-address=0.0.0.0:8384 -home=/mnt/raid0/bertof/Syncthing/.config"; };
|
||||
};
|
||||
syncthing-tiziano = common // {
|
||||
description = "Syncthing service tiziano";
|
||||
serviceConfig = { User = "tiziano"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -gui-address=0.0.0.0:8385 -home=/mnt/raid/tiziano/Syncthing/.config"; };
|
||||
serviceConfig = { User = "tiziano"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -gui-address=0.0.0.0:8385 -home=/mnt/raid0/tiziano/Syncthing/.config"; };
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -277,7 +291,7 @@
|
|||
ports = [ "8123:8123" ];
|
||||
volumes = [
|
||||
"/var/lib/hass:/config"
|
||||
"/mnt/raid/condiviso:/media"
|
||||
"/mnt/raid0/condiviso:/media"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue