General: cleanup unused attributes
This commit is contained in:
parent
25fd493556
commit
10f1d86a97
|
@ -35,8 +35,6 @@ in
|
||||||
tpm2.enable = true;
|
tpm2.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
bluetooth.adapter = "AC:50:DE:9F:AB:88";
|
|
||||||
|
|
||||||
# Change the default text editor. Options are "emacs", "nano", or "vim".
|
# Change the default text editor. Options are "emacs", "nano", or "vim".
|
||||||
editor = "nano";
|
editor = "nano";
|
||||||
|
|
||||||
|
@ -64,13 +62,6 @@ in
|
||||||
operation = "boot";
|
operation = "boot";
|
||||||
user = config.users.users.aires.name;
|
user = config.users.users.aires.name;
|
||||||
};
|
};
|
||||||
netdata = {
|
|
||||||
# FIXME: Disabled until I get Nginx configured to provide a streaming endpoint
|
|
||||||
enable = false;
|
|
||||||
type = "child";
|
|
||||||
url = config.secrets.services.netdata.url;
|
|
||||||
auth.apiKey = config.secrets.services.netdata.apiKey;
|
|
||||||
};
|
|
||||||
syncthing = {
|
syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
home = "/home/aires/.config/syncthing";
|
home = "/home/aires/.config/syncthing";
|
||||||
|
|
|
@ -74,14 +74,10 @@ in
|
||||||
package = pkgs.unstable.netdataCloud;
|
package = pkgs.unstable.netdataCloud;
|
||||||
enableAnalyticsReporting = false;
|
enableAnalyticsReporting = false;
|
||||||
configDir = {
|
configDir = {
|
||||||
# Enable nvidia-smi: https://nixos.wiki/wiki/Netdata#nvidia-smi
|
|
||||||
"python.d.conf" = pkgs.writeText "python.d.conf" ''
|
|
||||||
nvidia_smi: yes
|
|
||||||
'';
|
|
||||||
# Allow incoming streams
|
# Allow incoming streams
|
||||||
"stream.conf" = pkgs.writeText "stream.conf" ''
|
"stream.conf" = pkgs.writeText "stream.conf" ''
|
||||||
[${config.secrets.services.netdata.apiKey}]
|
[${config.secrets.services.netdata.apiKey}]
|
||||||
enabled = yes
|
enabled = no
|
||||||
default history = 3600
|
default history = 3600
|
||||||
default memory mode = dbengine
|
default memory mode = dbengine
|
||||||
health enabled by default = auto
|
health enabled by default = auto
|
||||||
|
|
|
@ -14,11 +14,6 @@ in
|
||||||
options = {
|
options = {
|
||||||
aux.system.bluetooth = {
|
aux.system.bluetooth = {
|
||||||
enable = lib.mkEnableOption "Enables bluetooth.";
|
enable = lib.mkEnableOption "Enables bluetooth.";
|
||||||
adapter = lib.mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
description = "The MAC address of your primary Bluetooth adapter Used to install device configs.";
|
|
||||||
default = "";
|
|
||||||
};
|
|
||||||
experimental.enable = lib.mkEnableOption "Enables experimental features, like device power reporting.";
|
experimental.enable = lib.mkEnableOption "Enables experimental features, like device power reporting.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue