1
0
Fork 0

General: cleanup unused attributes

This commit is contained in:
Aires 2024-11-26 12:08:06 -05:00
parent 25fd493556
commit 10f1d86a97
3 changed files with 1 additions and 19 deletions

View file

@ -35,8 +35,6 @@ in
tpm2.enable = true;
};
bluetooth.adapter = "AC:50:DE:9F:AB:88";
# Change the default text editor. Options are "emacs", "nano", or "vim".
editor = "nano";
@ -64,13 +62,6 @@ in
operation = "boot";
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 = {
enable = true;
home = "/home/aires/.config/syncthing";

View file

@ -74,14 +74,10 @@ in
package = pkgs.unstable.netdataCloud;
enableAnalyticsReporting = false;
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
"stream.conf" = pkgs.writeText "stream.conf" ''
[${config.secrets.services.netdata.apiKey}]
enabled = yes
enabled = no
default history = 3600
default memory mode = dbengine
health enabled by default = auto

View file

@ -14,11 +14,6 @@ in
options = {
aux.system.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.";
};
};