Zoneminder

This commit is contained in:
Filippo Berto 2022-06-11 23:07:37 +02:00
parent 30ed635927
commit cb88eef2a2
4 changed files with 90 additions and 43 deletions

View file

@ -3,7 +3,7 @@
{ {
boot = { boot = {
binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ]; binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
kernelPackages = pkgs.linuxPackages_5_17; kernelPackages = pkgs.linuxPackages_5_18;
loader = { loader = {
systemd-boot.enable = true; systemd-boot.enable = true;
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
@ -24,12 +24,13 @@
enableRedistributableFirmware = true; enableRedistributableFirmware = true;
nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470; nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
nvidia.prime = { nvidia.nvidiaPersistenced = true;
offload.enable = false; # nvidia.prime = {
sync.enable = true; # offload.enable = false;
intelBusId = "PCI:0:2:0"; # sync.enable = true;
nvidiaBusId = "PCI:1:0:0"; # intelBusId = "PCI:0:2:0";
}; # nvidiaBusId = "PCI:1:0:0";
# };
opengl = { opengl = {
enable = true; enable = true;
@ -109,19 +110,19 @@
}; in }; in
{ {
bertof = common // { bertof = common // {
path = "/mnt/raid/bertof"; path = "/mnt/raid0/bertof";
comment = "Bertof samba share"; comment = "Bertof samba share";
"force user" = "bertof"; "force user" = "bertof";
"valid users" = "bertof"; "valid users" = "bertof";
}; };
tiziano = common // { tiziano = common // {
path = "/mnt/raid/tiziano"; path = "/mnt/raid0/tiziano";
comment = "Tiziano samba share"; comment = "Tiziano samba share";
"force user" = "tiziano"; "force user" = "tiziano";
"valid users" = "tiziano"; "valid users" = "tiziano";
}; };
condiviso = common // { condiviso = common // {
path = "/mnt/raid/condiviso"; path = "/mnt/raid0/condiviso";
comment = "Samba share condiviso"; comment = "Samba share condiviso";
"valid users" = "bertof tiziano"; "valid users" = "bertof tiziano";
"create mask" = "0770"; "create mask" = "0770";
@ -160,18 +161,31 @@
openFirewall = true; openFirewall = true;
group = "users"; group = "users";
settings = { settings = {
download-dir = "/mnt/raid/condiviso/Scaricati/Torrent"; download-dir = "/mnt/raid0/condiviso/Scaricati/Torrent";
incomplete-dir = "/mnt/raid/condiviso/Scaricati/Torrent/.incomplete"; incomplete-dir = "/mnt/raid0/condiviso/Scaricati/Torrent/.incomplete";
}; };
}; };
xserver = { xserver = {
enable = true; # enable = true;
videoDrivers = [ "nvidia" ]; videoDrivers = [ "nvidia" ];
layout = "it"; # layout = "it";
xkbOptions = "eurosign:e;"; # xkbOptions = "eurosign:e;";
libinput.enable = true; # libinput.enable = true;
}; };
zerotierone = { enable = true; joinNetworks = [ "8056c2e21cf9c753" ]; }; 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 = { users.users = {
@ -233,11 +247,11 @@
{ {
syncthing-bertof = common // { syncthing-bertof = common // {
description = "Syncthing service bertof"; 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 // { syncthing-tiziano = common // {
description = "Syncthing service tiziano"; 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" ]; ports = [ "8123:8123" ];
volumes = [ volumes = [
"/var/lib/hass:/config" "/var/lib/hass:/config"
"/mnt/raid/condiviso:/media" "/mnt/raid0/condiviso:/media"
]; ];
}; };
}; };

View file

@ -4,34 +4,68 @@
{ config, lib, modulesPath, ... }: { config, lib, modulesPath, ... }:
{ {
imports = [ imports =
(modulesPath + "/installer/scan/not-detected.nix") [
]; (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "uas" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "uas" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" =
device = "/dev/disk/by-uuid/eb51e914-c9ab-400d-bd2a-004a3b788caa"; {
fsType = "btrfs"; device = "/dev/disk/by-uuid/eb51e914-c9ab-400d-bd2a-004a3b788caa";
}; fsType = "btrfs";
};
fileSystems."/boot" = { fileSystems."/boot" =
device = "/dev/disk/by-uuid/8A71-E5EB"; {
fsType = "vfat"; device = "/dev/disk/by-uuid/8A71-E5EB";
}; fsType = "vfat";
};
fileSystems."/mnt/raid1" = { fileSystems."/mnt/raid1" =
device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8"; {
fsType = "btrfs"; device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8";
}; fsType = "btrfs";
};
fileSystems."/mnt/raid" = { fileSystems."/var/lib/docker/btrfs" =
device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; {
fsType = "btrfs"; device = "/var/lib/docker/btrfs";
}; fsType = "none";
options = [ "bind" ];
};
fileSystems."/mnt/raid0/bertof" =
{
device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c";
fsType = "btrfs";
options = [ "subvol=@bertof" ];
};
fileSystems."/mnt/raid0/tiziano" =
{
device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c";
fsType = "btrfs";
options = [ "subvol=@tiziano" ];
};
fileSystems."/mnt/raid0/condiviso" =
{
device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c";
fsType = "btrfs";
options = [ "subvol=@condiviso" ];
};
fileSystems."/mnt/zoneminder" =
{
device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c";
fsType = "btrfs";
options = [ "subvol=@zoneminder" ];
};
swapDevices = [ ]; swapDevices = [ ];
@ -39,10 +73,9 @@
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault false;
# networking.interfaces.docker0.useDHCP = lib.mkDefault true; # networking.interfaces.docker0.useDHCP = lib.mkDefault true;
networking.interfaces.eno1.useDHCP = lib.mkDefault true; networking.interfaces.eno1.useDHCP = lib.mkDefault true;
# networking.interfaces.vboxnet0.useDHCP = lib.mkDefault true;
networking.interfaces.wlp7s0.useDHCP = lib.mkDefault true; networking.interfaces.wlp7s0.useDHCP = lib.mkDefault true;
# networking.interfaces.ztmjfdwjkp.useDHCP = lib.mkDefault true; # networking.interfaces.ztmjfdwjkp.useDHCP = lib.mkDefault true;

View file

@ -4,12 +4,12 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.checkJournalingFS = true; boot.initrd.checkJournalingFS = true;
boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_17; boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_18;
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
# # Cross-build arm # # Cross-build arm
boot.binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ]; boot.binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;
# Use same ACPI identifier as Dell Ubuntu # Use same ACPI identifier as Dell Ubuntu

View file

@ -2,7 +2,7 @@
{ {
boot = { boot = {
binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ]; binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
kernelPackages = pkgs.linuxPackages_5_17; kernelPackages = pkgs.linuxPackages_5_18;
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
loader = { loader = {
systemd-boot.enable = true; systemd-boot.enable = true;