You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
367 B
Nix
11 lines
367 B
Nix
packages: {config, ...}: {
|
|
/* FIXME: Switch to using systemd.enableCgroupAccounting in NixOS 18.09; ref https://github.com/NixOS/nixpkgs/pull/36772 */
|
|
systemd.extraConfig = ''
|
|
DefaultCPUAccounting=yes
|
|
DefaultIOAccounting=yes
|
|
DefaultBlockIOAccounting=yes
|
|
DefaultMemoryAccounting=yes
|
|
DefaultTasksAccounting=yes
|
|
'';
|
|
}
|