Compare commits
No commits in common. "9e854cf8427446aa474b76ef38ae7047ebe5e45f" and "39af4ec9d14c8dc5e2d6b5161a4101b40ca4f72f" have entirely different histories.
9e854cf842
...
39af4ec9d1
@ -1,9 +1,15 @@
|
|||||||
self: super:
|
self: super:
|
||||||
let
|
let
|
||||||
unstable = import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {};
|
unstable = import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {};
|
||||||
|
unstable-jackett = import (super.fetchFromGitHub {
|
||||||
|
owner = "r-ryantm";
|
||||||
|
repo = "nixpkgs";
|
||||||
|
rev = "969eccc471d6a7108e2d3a2d54dca3127ab004b3";
|
||||||
|
sha256 = "0kmz7g9r05dpikln1ad46dk06hid214cjcv3csp708gc0h3qj7zm";
|
||||||
|
}){};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
jackett = unstable.jackett;
|
jackett = unstable-jackett.jackett;
|
||||||
radarr = unstable.radarr;
|
radarr = unstable.radarr;
|
||||||
sonarr = unstable.sonarr;
|
sonarr = unstable.sonarr;
|
||||||
emby = unstable.emby;
|
emby = unstable.emby;
|
||||||
|
@ -212,6 +212,7 @@ in
|
|||||||
|
|
||||||
postgresql.enable = true;
|
postgresql.enable = true;
|
||||||
|
|
||||||
|
/*
|
||||||
matrix-synapse = {
|
matrix-synapse = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = unstable.matrix-synapse;
|
package = unstable.matrix-synapse;
|
||||||
@ -273,6 +274,7 @@ in
|
|||||||
disable_existing_loggers: False
|
disable_existing_loggers: False
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
pgmanage = {
|
pgmanage = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -370,7 +372,6 @@ in
|
|||||||
Group = "nogroup";
|
Group = "nogroup";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
*/
|
|
||||||
|
|
||||||
systemd.services.matrix-synapse = {
|
systemd.services.matrix-synapse = {
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
@ -378,6 +379,7 @@ in
|
|||||||
MemoryMax = "5G";
|
MemoryMax = "5G";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
security.sudo.extraRules = [
|
security.sudo.extraRules = [
|
||||||
{ commands = [ { command = "${pkgs.smartmontools}/bin/smartctl"; options = [ "NOPASSWD" ]; } ]; users = [ "telegraf" ]; }
|
{ commands = [ { command = "${pkgs.smartmontools}/bin/smartctl"; options = [ "NOPASSWD" ]; } ]; users = [ "telegraf" ]; }
|
||||||
|
Loading…
Reference in New Issue
Block a user