From b6f2263cfb784838fe6fa2bcd4899e6f94dcdfec Mon Sep 17 00:00:00 2001 From: Josef Date: Sat, 9 Nov 2024 23:35:07 +0100 Subject: [PATCH] fix: dock defaults --- hosts/darwin/system.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/darwin/system.nix b/hosts/darwin/system.nix index 845327f7..5da81a81 100644 --- a/hosts/darwin/system.nix +++ b/hosts/darwin/system.nix @@ -40,9 +40,9 @@ # https://daiderd.com/nix-darwin/manual/index.html#opt-system.defaults.CustomUserPreferences CustomUserPreferences = { "com.apple.dock" = { - "contents-immutable" = 1; - "size-immutable" = 1; - "position-immutable" = 1; + "contents-immutable" = 0; + "size-immutable" = 0; + "position-immutable" = 0; }; };