Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

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

fix: Wrong reference in lib.storage, build CI action ref

+4 -2
+2
.github/workflows/build.yml
··· 22 22 aarch64-linux: ${{ steps.matrix.outputs.aarch64-linux }} 23 23 steps: 24 24 - uses: actions/checkout@v4 25 + with: 26 + ref: ${{ github.event.workflow_run.head_sha }} 25 27 - name: Setup Nix 26 28 uses: ./.github/actions/nix-setup 27 29 with:
+2 -2
nix/lib/flake.nix
··· 1 - {lib, ...}: { 1 + {lib, ...}: rec { 2 2 getStandaloneHomeConfigurations = self: 3 3 self.homeConfigurations 4 - |> lib.filterAttrs (name: _: self.lib.isStandaloneHome self.nixosConfigurations name); 4 + |> lib.filterAttrs (name: _: isStandaloneHome self.nixosConfigurations name); 5 5 isStandaloneHome = nixosConfigurations: name: 6 6 !(nixosConfigurations ? ${name |> lib.splitString "@" |> lib.last}); 7 7 }