Compare commits
No commits in common. "a239dfc1374d3a50af719fb7fb12574c46a70638" and "0c8bea1863765339088a45011c9191509e7d128d" have entirely different histories.
a239dfc137
...
0c8bea1863
5 changed files with 18 additions and 3 deletions
|
|
@ -19,6 +19,7 @@
|
|||
./netdata.nix
|
||||
./nginx.nix
|
||||
./open-webui-oci.nix
|
||||
./print-server.nix
|
||||
./rsshub-oci.nix
|
||||
./samba.nix
|
||||
./vaultwarden.nix
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
12
hosts/rx4/services/print-server.nix
Normal file
12
hosts/rx4/services/print-server.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.synix.nixosModules.print-server
|
||||
];
|
||||
|
||||
services.print-server.enable = true;
|
||||
}
|
||||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -7,4 +7,6 @@
|
|||
|
||||
inputs.synix.nixosModules.device.server
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue