nixos/systemd: remove obsolete DefaultCPUAccounting option

This option is made uncondiotional in systemd 258 [1].
Earlier, it defaulted to true on kernels newer than 4.15,
which applies to all supported nixos kernels.
This means removing the option does not change behavior.

[1] https://github.com/systemd/systemd/commit/29da53dde32a0097134f6c3ba5fb5220dd6e5423

Grimmauld 231c1427 f47b1007

-7
-7
nixos/modules/system/boot/systemd.nix
··· 425 type = lib.types.submodule { 426 freeformType = types.attrsOf unitOption; 427 options = { 428 - DefaultCPUAccounting = mkOption { 429 - type = types.bool; 430 - default = cfg.enableCgroupAccounting; 431 - defaultText = lib.literalExpression "config.systemd.enableCgroupAccounting"; 432 - description = "Turn on CPU usage accounting"; 433 - }; 434 - 435 DefaultIOAccounting = mkOption { 436 type = types.bool; 437 default = cfg.enableCgroupAccounting;
··· 425 type = lib.types.submodule { 426 freeformType = types.attrsOf unitOption; 427 options = { 428 DefaultIOAccounting = mkOption { 429 type = types.bool; 430 default = cfg.enableCgroupAccounting;