From 47fac7d9af60d460e3e0f1df00780c0df4d78e6f Mon Sep 17 00:00:00 2001 From: Josef Date: Sun, 10 Nov 2024 00:04:47 +0100 Subject: [PATCH] Revert "fix: dock defaults" This reverts commit b6f2263cfb784838fe6fa2bcd4899e6f94dcdfec. --- hosts/darwin/system.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/darwin/system.nix b/hosts/darwin/system.nix index 8f05ddac..c053f060 100644 --- a/hosts/darwin/system.nix +++ b/hosts/darwin/system.nix @@ -39,11 +39,12 @@ CustomSystemPreferences = {}; # https://daiderd.com/nix-darwin/manual/index.html#opt-system.defaults.CustomUserPreferences + # SET THIS ALSO IN THE UPSTREAN CONFIG BUT SWAP OUT THE VALUES TO 0!!! CustomUserPreferences = { "com.apple.dock" = { - "contents-immutable" = 0; - "size-immutable" = 0; - "position-immutable" = 0; + "contents-immutable" = 1; + "size-immutable" = 1; + "position-immutable" = 1; }; };