aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-08-19 17:50:29 +0200
committerFlorian Klink <flokli@flokli.de>2019-08-25 22:26:12 +0200
commit0fb17141fb2c8a9d64ada11b7e3082b2b8041d7a (patch)
treec75fbf89bdddcb8f8c87420ba0dd0072aa7de0d5 /nixos/modules/system
parentf3a18d4562f30737235997e666ed41d6c2e6235a (diff)
nixos/systemd: enable cgroup accounting by default
If this is the default for OpenShift already, we probably can enable it as well. see https://github.com/openshift/machine-config-operator/pull/581
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/systemd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index 5d0783b663d..2a0360b12cb 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -537,7 +537,7 @@ in
};
systemd.enableCgroupAccounting = mkOption {
- default = false;
+ default = true;
type = types.bool;
description = ''
Whether to enable cgroup accounting.