My nix-darwin and NixOS config
3
fork

Configure Feed

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

chore: point pkgs-monorepo to github:ewanc26/pkgs; update tool aliases

+14 -10
+9 -5
flake.lock
··· 333 333 ] 334 334 }, 335 335 "locked": { 336 - "narHash": "sha256-o0kih0lokmDxPTsusV+Q73BBchOTC0c142tstufBnig=", 337 - "path": "/Users/ewan/Developer/Git/pkgs", 338 - "type": "path" 336 + "lastModified": 1772901285, 337 + "narHash": "sha256-Ln/syaFosZQTx8fTFyj2mpZvxa96jc2GXpkqhL5h6r0=", 338 + "owner": "ewanc26", 339 + "repo": "pkgs", 340 + "rev": "d5869dbb0e2b1c8d9e77ff110c5300263a96f348", 341 + "type": "github" 339 342 }, 340 343 "original": { 341 - "path": "/Users/ewan/Developer/Git/pkgs", 342 - "type": "path" 344 + "owner": "ewanc26", 345 + "repo": "pkgs", 346 + "type": "github" 343 347 } 344 348 }, 345 349 "plasma-manager": {
+1 -1
flake.nix
··· 41 41 42 42 # Language-agnostic monorepo with TypeScript and Rust packages 43 43 pkgs-monorepo = { 44 - url = "path:/Users/ewan/Developer/Git/pkgs"; 44 + url = "github:ewanc26/pkgs"; 45 45 inputs.nixpkgs.follows = "nixpkgs"; 46 46 }; 47 47 };
+4 -4
home/programs/zsh.nix
··· 64 64 gd = "git diff"; 65 65 gds = "git diff --staged"; 66 66 67 - # ── Nix tool aliases (from monorepo) ────────────────────────────────── 68 - flake-bump = "nix run ~/Developer/Git/pkgs#flake-bump"; 69 - gen-diff = "nix run ~/Developer/Git/pkgs#gen-diff"; 70 - health-check = "nix run ~/Developer/Git/pkgs#health-check"; 67 + # ── Nix tool aliases (from github:ewanc26/pkgs) ─────────────────────── 68 + flake-bump = "nix run github:ewanc26/pkgs#flake-bump"; 69 + gen-diff = "nix run github:ewanc26/pkgs#gen-diff"; 70 + health-check = "nix run github:ewanc26/pkgs#health-check"; 71 71 update-all = "~/.config/nix-config/home/scripts/update-all"; 72 72 update-everything = "~/.config/nix-config/home/scripts/update-everything"; 73 73