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
|
./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
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
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 = {
|
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";
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,6 @@
|
||||||
|
|
||||||
inputs.synix.nixosModules.device.server
|
inputs.synix.nixosModules.device.server
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue