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.

Add minimal CI config and docs

+27
+26
.github/workflows/update-flakes.yml
··· 1 + name: nix flake update 2 + on: 3 + schedule: 4 + - cron: "30 0 * * *" 5 + push: 6 + branches: [main] 7 + jobs: 8 + build: 9 + runs-on: ubuntu-latest 10 + steps: 11 + - uses: actions/checkout@v2 12 + - name: Set up Nix 13 + uses: cachix/install-nix-action@v14 14 + with: 15 + nix_path: nixpkgs=channel:nixos-unstable 16 + 17 + - name: Update flake 18 + run: nix flake update 19 + 20 + - name: Commit and push changes 21 + run: | 22 + git config --global user.name "github-actions[bot]" 23 + git config --global user.email "github-actions[bot]@users.noreply.github.com" 24 + git add flake.lock 25 + git commit -m "Update flake.lock" || echo "No changes to commit" 26 + git push
+1
.wakatime-project
··· 1 + @andreijiroh-dev/nixops-config