Compare commits

..

No commits in common. "a239dfc1374d3a50af719fb7fb12574c46a70638" and "0c8bea1863765339088a45011c9191509e7d128d" have entirely different histories.

5 changed files with 18 additions and 3 deletions

View file

@ -19,6 +19,7 @@
./netdata.nix ./netdata.nix
./nginx.nix ./nginx.nix
./open-webui-oci.nix ./open-webui-oci.nix
./print-server.nix
./rsshub-oci.nix ./rsshub-oci.nix
./samba.nix ./samba.nix
./vaultwarden.nix ./vaultwarden.nix

View file

@ -1,14 +1,12 @@
{ {
config, config,
constants, constants,
pkgs,
... ...
}: }:
{ {
services.netdata = { services.netdata = {
enable = true; enable = true;
package = pkgs.netdata.override { withCloudUi = false; };
config.global = { config.global = {
"debug log" = "syslog"; "debug log" = "syslog";
"access log" = "syslog"; "access log" = "syslog";

View file

@ -0,0 +1,12 @@
{
inputs,
...
}:
{
imports = [
inputs.synix.nixosModules.print-server
];
services.print-server.enable = true;
}

View file

@ -10,7 +10,9 @@ in
{ {
services.netdata = { services.netdata = {
enable = true; enable = true;
package = pkgs.netdata.override { withCloudUi = false; }; package = pkgs.netdata.override {
withCloudUi = true;
};
config.global = { config.global = {
"debug log" = "syslog"; "debug log" = "syslog";
"access log" = "syslog"; "access log" = "syslog";

View file

@ -7,4 +7,6 @@
inputs.synix.nixosModules.device.server inputs.synix.nixosModules.device.server
]; ];
nixpkgs.config.allowUnfree = true;
} }