Skip to content

flake: add nixpkgs/master, zen-browser, flatseal #191

flake: add nixpkgs/master, zen-browser, flatseal

flake: add nixpkgs/master, zen-browser, flatseal #191

Workflow file for this run

name: update-flake-lock
on:
workflow_dispatch:
inputs:
bumpWhat:
description: Which flake input? (leave blank for all)
required: false
type: string
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
# - cron: '0 0 * * *' # runs everyday at 00:00
push:
paths:
- 'flake.nix'
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v25
with:
install_url: https://nixos.org/nix/install
extra_nix_config: |
auto-optimise-store = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
experimental-features = nix-command flakes
accept-flake-config = true
- name: Reformat *.nix files
run: nix fmt
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v21
with:
inputs: ${{ inputs.bumpWhat }}