diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 62524cb..7d46766 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -13,18 +13,18 @@ jobs: permissions: contents: read - runs-on: ubuntu-latest + runs-on: native steps: - - name: Install Nix - uses: DeterminateSystems/nix-installer-action@main - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - extra-conf: | - extra-experimental-features = nix-command flakes pipe-operators - - - name: Set up cache - uses: DeterminateSystems/magic-nix-cache-action@main + # - name: Install Nix + # uses: DeterminateSystems/nix-installer-action@main + # with: + # github-token: ${{ secrets.GITHUB_TOKEN }} + # extra-conf: | + # extra-experimental-features = nix-command flakes pipe-operators + # + # - name: Set up cache + # uses: DeterminateSystems/magic-nix-cache-action@main - name: Build docs run: nix -L build github:${{ github.repository }}/${{ github.sha }}#docs --no-write-lock-file @@ -32,27 +32,27 @@ jobs: - name: Prepare docs for upload run: cp -r --dereference --no-preserve=mode,ownership result/ public/ - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: public/ + # - name: Upload artifact + # uses: actions/upload-pages-artifact@v3 + # with: + # path: public/ - deploy: - name: Deploy - - needs: build - - permissions: - pages: write - id-token: write - - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - - runs-on: ubuntu-latest - - steps: - - name: Deploy docs to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 + # deploy: + # name: Deploy + # + # needs: build + # + # permissions: + # pages: write + # id-token: write + # + # environment: + # name: github-pages + # url: ${{ steps.deployment.outputs.page_url }} + # + # runs-on: ubuntu-latest + # + # steps: + # - name: Deploy docs to GitHub Pages + # id: deployment + # uses: actions/deploy-pages@v4 diff --git a/modules/programs/media.nix b/modules/programs/media.nix index e701fb1..c37d62b 100644 --- a/modules/programs/media.nix +++ b/modules/programs/media.nix @@ -87,7 +87,7 @@ # audio control playerctl # images - imv + eog # videos mpv # pdf diff --git a/modules/programs/mime.nix b/modules/programs/mime.nix index 03d04d8..4da7aff 100644 --- a/modules/programs/mime.nix +++ b/modules/programs/mime.nix @@ -85,7 +85,7 @@ in { description = "Applications used for handling browser mime types"; }; imageApplications = lib.mkOption { - default = ["imv"]; + default = ["eog"]; example = []; type = with lib.types; listOf str; description = "Applications used for handling image mime types"; diff --git a/modules/programs/yazi/yazi.nix b/modules/programs/yazi/yazi.nix index 0a6aec6..22e3169 100644 --- a/modules/programs/yazi/yazi.nix +++ b/modules/programs/yazi/yazi.nix @@ -31,7 +31,7 @@ ]; image = [ { - run = ''imv "$@"''; + run = ''eog "$@"''; orphan = true; display_name = "Open"; }