[READ-ONLY] Mirror of https://github.com/maybeanerd/nixos. the nixos config for my PC, laptops, and whatever else I can find
1

Configure Feed

Select the types of activity you want to include in your feed.

feat(work): add claude code (#132)

* feat(work): add claude code

* fix(work): rename device

* fix(darwin): cleanup homebrew

authored by

Sebastian Di Luzio and committed by
GitHub
(Jun 8, 2026, 10:07 AM UTC) ce9b4a59 9af10036

+21 -10
+1 -1
.github/workflows/check.yml
··· 107 107 - config: Big-M1ac 108 108 platform: darwin 109 109 os: macos-latest 110 - - config: MacBook-Pro-MBP-L1682 110 + - config: Sebastian-Di-Luzio-MacBook-Pro-MBP-L1682 111 111 platform: darwin 112 112 os: macos-latest 113 113 steps:
+3
darwin/homebrew/default.nix
··· 56 56 autoUpdate = true; 57 57 upgrade = true; 58 58 cleanup = "uninstall"; 59 + # Homebrew requires --force-cleanup when using --cleanup, 60 + # which is currently not being passed yet by nix-darwin when setting cleanup to uninstall. 61 + extraFlags = [ "--force-cleanup" ]; 59 62 }; 60 63 61 64 # CLI tools installed via Homebrew formulas
+1 -1
flake.nix
··· 153 153 }; 154 154 155 155 # Work MacBook Pro @liqid 156 - "MacBook-Pro-MBP-L1682" = { 156 + "Sebastian-Di-Luzio-MacBook-Pro-MBP-L1682" = { 157 157 username = "sebastiandiluzio"; 158 158 isWorkDevice = true; 159 159 gitConfig = {
+16 -8
home-manager/development/work.nix
··· 19 19 cyberduck 20 20 ]; 21 21 22 - programs.zsh = { 23 - shellAliases.ca = "cursor-agent"; 24 - initContent = '' 25 - # Android SDK configuration 26 - export ANDROID_HOME=$HOME/Library/Android/sdk 27 - export PATH=$PATH:$ANDROID_HOME/emulator 28 - export PATH=$PATH:$ANDROID_HOME/platform-tools 29 - ''; 22 + programs = { 23 + claude-code = { 24 + enable = true; 25 + }; 26 + 27 + zsh = { 28 + shellAliases = { 29 + ca = "cursor-agent"; 30 + }; 31 + initContent = '' 32 + # Android SDK configuration 33 + export ANDROID_HOME=$HOME/Library/Android/sdk 34 + export PATH=$PATH:$ANDROID_HOME/emulator 35 + export PATH=$PATH:$ANDROID_HOME/platform-tools 36 + ''; 37 + }; 30 38 }; 31 39 }