nixos/common: Add netdata to system when enabled

This commit is contained in:
Jack O'Sullivan 2022-06-12 17:54:00 +01:00
parent f38c5872a4
commit f01fa8f6b1

View File

@ -99,9 +99,12 @@ in
}; };
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; mkMerge [
bash-completion [
vim bash-completion
vim
]
(mkIf config.services.netdata.enable [ netdata ])
]; ];
programs = { programs = {