From e9826fc958d1e7d588cfecaca0617c055e70c574 Mon Sep 17 00:00:00 2001 From: Charles Sirois Date: Fri, 21 Mar 2025 00:12:04 -0400 Subject: [PATCH] more macos config --- devices/macbook/configuration.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/devices/macbook/configuration.nix b/devices/macbook/configuration.nix index 6e31d07..20eebe8 100644 --- a/devices/macbook/configuration.nix +++ b/devices/macbook/configuration.nix @@ -4,7 +4,7 @@ environment.systemPackages = with pkgs; [ # terminal ranger - (inputs.nixvim.packages.x86_64-darwin.default) + (inputs.nixvim.packages.${system}.default) # nix home-manager @@ -49,6 +49,19 @@ # Used for backwards compatibility, please read the changelog before changing. # $ darwin-rebuild changelog system.stateVersion = 4; + ids.gids.nixbld = 350; + + system.defaults.dock = { + autohide = true; + persistent-apps = []; + show-recents = false; + static-only = true; + tilesize = 32; + }; + + system.defaults.menuExtraClock = { + Show24Hour = true; + }; # The platform the configuration will be used on. nixpkgs.hostPlatform = system;