yep, more dotfiles

fix: remove deleted cachix

+8 -20
+4 -6
.github/workflows/nix.yml
··· 1 1 name: Nix 2 - on: [push, pull_request] 2 + on: 3 + - push 4 + - pull_request 3 5 4 6 jobs: 5 7 build: 6 - name: Check flake and upload build cache 8 + name: Check flake 7 9 runs-on: ubuntu-latest 8 10 steps: 9 11 - uses: actions/checkout@v4 10 - - uses: cachix/install-nix-action@v31 11 - with: 12 - github_access_token: ${{ secrets.GITHUB_TOKEN }} 13 - 14 12 - name: Check flake structure 15 13 run: nix flake check
+2 -6
nixos/fragments/nix.nix
··· 60 60 extra-platforms = config.boot.binfmt.emulatedSystems; 61 61 62 62 trusted-users = [ config.local.user.username ]; 63 - extra-substituters = [ 64 - "https://nix-community.cachix.org" 65 - ]; 66 - extra-trusted-public-keys = [ 67 - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 68 - ]; 63 + extra-substituters = [ "https://nix-community.cachix.org" ]; 64 + extra-trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ]; 69 65 }; 70 66 }; 71 67 };
+2 -8
nixos/profiles/installer.nix
··· 70 70 71 71 nix.settings = { 72 72 experimental-features = [ "nix-command" "flakes" ]; 73 - extra-substituters = [ 74 - "https://nix-community.cachix.org" 75 - "https://mrnossiom.cachix.org" 76 - ]; 77 - extra-trusted-public-keys = [ 78 - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 79 - "mrnossiom.cachix.org-1:WKo+xfDFaT6pRP4YiIFsEXvyBzI/Pm9uGhURgF1wlQg=" 80 - ]; 73 + extra-substituters = [ "https://nix-community.cachix.org" ]; 74 + extra-trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ]; 81 75 }; 82 76 83 77 # Add our keys to default users for better remote experience