Fix macOS configuration and add R to path

This commit is contained in:
2026-02-12 10:17:18 +01:00
parent cfc75b3f80
commit 3110363cc6
2 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -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 ];
}