From 682605ee57b57bea2e3ba605ce42e12e191e7632 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/darwin/system.nix b/hosts/darwin/system.nix index 845327f7..04408e1d 100644 --- a/hosts/darwin/system.nix +++ b/hosts/darwin/system.nix @@ -35,10 +35,7 @@ ".GlobalPreferences"."com.apple.mouse.scaling" = 0.6875; # https://daiderd.com/nix-darwin/manual/index.html#opt-system.defaults.CustomSystemPreferences - CustomSystemPreferences = {}; - - # https://daiderd.com/nix-darwin/manual/index.html#opt-system.defaults.CustomUserPreferences - CustomUserPreferences = { + CustomSystemPreferences = { "com.apple.dock" = { "contents-immutable" = 1; "size-immutable" = 1; @@ -46,6 +43,9 @@ }; }; + # https://daiderd.com/nix-darwin/manual/index.html#opt-system.defaults.CustomUserPreferences + # CustomUserPreferences = {}; + finder = { AppleShowAllExtensions = true; AppleShowAllFiles = true;