NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

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

fix: lock GH Copilot extension to fix hash mismatches

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+16 -10
+6 -6
flake.lock
··· 343 343 ] 344 344 }, 345 345 "locked": { 346 - "lastModified": 1764734243, 347 - "narHash": "sha256-/zLLKBxvC3ZLyivCUfWEy08h/Evr5hFqQ0pqAfgRvbU=", 346 + "lastModified": 1764788330, 347 + "narHash": "sha256-hE/gXK+Z0j654T0tsW+KcndRqsgZXe8HyWchjBJgQpw=", 348 348 "owner": "nix-community", 349 349 "repo": "home-manager", 350 - "rev": "93d907a205ca7a4cd524a3c5f9e926904c7485bc", 350 + "rev": "fca4cba863e76c26cfe48e5903c2ff4bac2b2d5d", 351 351 "type": "github" 352 352 }, 353 353 "original": { ··· 659 659 ] 660 660 }, 661 661 "locked": { 662 - "lastModified": 1764598958, 663 - "narHash": "sha256-sJQHRL8trBoG/ArR+mUlyp5cyKU0pgQY+qDQzZGnVgM=", 662 + "lastModified": 1764778921, 663 + "narHash": "sha256-YoqPb0Fln3wTusaUR0+X3T2yi7BA0H5ny4L4FDv89LQ=", 664 664 "owner": "0xc000022070", 665 665 "repo": "zen-browser-flake", 666 - "rev": "8cded25e10b13e2999241f1c73a7d4e5e5d6f69e", 666 + "rev": "c55a5d612923e328e195cb633c0c767cd1b0437d", 667 667 "type": "github" 668 668 }, 669 669 "original": {
+10 -4
shared/vscode/main.nix
··· 56 56 "ms-vscode.remote-server" 57 57 "ms-vscode-remote.remote-ssh" 58 58 "GitHub.vscode-pull-request-github" 59 - 59 + ] ++ [ 60 60 # AI tools 61 - "GitHub.copilot" 62 - ]; 61 + # Manually pinned to fix hash mismatch (since Copilot releases are tied to VSC monthly releases 62 + (pkgs.vscode-utils.extensionFromVscodeMarketplace { 63 + name = "copilot"; 64 + publisher = "GitHub"; 65 + version = "1.388.0"; 66 + sha256 = "sha256-8fv+z+ksWYWDty1JPg6Pe5De1FdFLKmVC+hy8kF0s3g="; 67 + }) 68 + ]; 63 69 }; 64 - } 70 + }