From 3110363cc65e377274e3aac0daea9d4ed31f16f4 Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Thu, 12 Feb 2026 10:17:18 +0100 Subject: [PATCH] Fix macOS configuration and add R to path --- hosts/darwin/system/os.nix | 5 ++++- hosts/darwin/system/partials/system.nix | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/hosts/darwin/system/os.nix b/hosts/darwin/system/os.nix index 765ac8b..c1e3dee 100644 --- a/hosts/darwin/system/os.nix +++ b/hosts/darwin/system/os.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { system.primaryUser = "alistreaza"; nixpkgs.hostPlatform = "aarch64-darwin"; @@ -12,4 +12,7 @@ os.homebrew.obsidian.enable = true; os.homebrew.microsoft.enable = true; os.homebrew.keka.enable = true; + + # Fix on R install. # Case sensitive bug + environment.systemPackages = with pkgs; [ R ]; } diff --git a/hosts/darwin/system/partials/system.nix b/hosts/darwin/system/partials/system.nix index fd78040..12931e1 100644 --- a/hosts/darwin/system/partials/system.nix +++ b/hosts/darwin/system/partials/system.nix @@ -11,10 +11,11 @@ GuestEnabled = false; }; dock = { + minimize-to-application = true; show-recents = false; tilesize = 30; autohide = false; - orientation = "right"; + orientation = "bottom"; persistent-apps = [ { app = "/Applications/Zen.app"; } { app = "/System/Applications/Mail.app"; }