this repo has no description
0
fork

Configure Feed

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

chore(nix): upgrade to nixpkgs-25.05

+15 -13
+2
nix/darwin.nix
··· 21 21 # Enable alternative shell support in nix-darwin. 22 22 # programs.fish.enable = true; 23 23 24 + system.primaryUser = "boltless"; 25 + 24 26 # Set Git commit hash for darwin-version. 25 27 system.configurationRevision = self.rev or self.dirtyRev or null; 26 28
+11 -11
nix/flake.lock
··· 7 7 ] 8 8 }, 9 9 "locked": { 10 - "lastModified": 1743127615, 11 - "narHash": "sha256-+sMGqywrSr50BGMLMeY789mSrzjkoxZiu61eWjYS/8o=", 10 + "lastModified": 1748373722, 11 + "narHash": "sha256-qi6aDGP2W6GyAUNEhg+slQWEpUiJ8LNIrQkmxHpzadI=", 12 12 "owner": "nix-darwin", 13 13 "repo": "nix-darwin", 14 - "rev": "fc843893cecc1838a59713ee3e50e9e7edc6207c", 14 + "rev": "75b99daa12b1fffd646d6c3cf13b06f1fa5cef63", 15 15 "type": "github" 16 16 }, 17 17 "original": { 18 18 "owner": "nix-darwin", 19 - "ref": "nix-darwin-24.11", 19 + "ref": "nix-darwin-25.05", 20 20 "repo": "nix-darwin", 21 21 "type": "github" 22 22 } 23 23 }, 24 24 "nixpkgs": { 25 25 "locked": { 26 - "lastModified": 1747397834, 27 - "narHash": "sha256-JKNliE06f0B6171bGFMIGNJnr1QO/RtkDJ3ifqg7fGQ=", 26 + "lastModified": 1748784767, 27 + "narHash": "sha256-XDFqk5jdf//OwpbftRK/8tmJHVjTFhjoHOPoIS9n9Gg=", 28 28 "owner": "NixOS", 29 29 "repo": "nixpkgs", 30 - "rev": "2aa9b5338551238f2981c385ef01a949b9f578d1", 30 + "rev": "e8c6caf5a492a7757d161c29d80c308462e896d3", 31 31 "type": "github" 32 32 }, 33 33 "original": { 34 34 "owner": "NixOS", 35 - "ref": "nixpkgs-24.11-darwin", 35 + "ref": "nixpkgs-25.05-darwin", 36 36 "repo": "nixpkgs", 37 37 "type": "github" 38 38 } 39 39 }, 40 40 "nixpkgs-unstable": { 41 41 "locked": { 42 - "lastModified": 1747426788, 43 - "narHash": "sha256-N4cp0asTsJCnRMFZ/k19V9akkxb7J/opG+K+jU57JGc=", 42 + "lastModified": 1748792178, 43 + "narHash": "sha256-BHmgfHlCJVNisJShVaEmfDIr/Ip58i/4oFGlD1iK6lk=", 44 44 "owner": "NixOS", 45 45 "repo": "nixpkgs", 46 - "rev": "12a55407652e04dcf2309436eb06fef0d3713ef3", 46 + "rev": "5929de975bcf4c7c8d8b5ca65c8cd9ef9e44523e", 47 47 "type": "github" 48 48 }, 49 49 "original": {
+2 -2
nix/flake.nix
··· 2 2 description = "nix-darwin system flake"; 3 3 4 4 inputs = { 5 - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-24.11-darwin"; 5 + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-25.05-darwin"; 6 6 nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 7 7 8 - nix-darwin.url = "github:nix-darwin/nix-darwin/nix-darwin-24.11"; 8 + nix-darwin.url = "github:nix-darwin/nix-darwin/nix-darwin-25.05"; 9 9 nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; 10 10 }; 11 11