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
./nginx.nix
./open-webui-oci.nix
./print-server.nix
./rsshub-oci.nix
./samba.nix
./vaultwarden.nix

View file

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

View file

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