summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/common.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/common.nix b/config/common.nix
index 548e252..21c3769 100644
--- a/config/common.nix
+++ b/config/common.nix
@@ -34,4 +34,9 @@
};
boot.cleanTmpDir = true;
+ boot.specialFileSystems = lib.optionalAttrs (config.boot.isContainer) {
+ "/dev/pts" = {
+ options = lib.mkAfter [ "ptmxmode=666" ];
+ };
+ };
}