Compare commits

..

2 Commits

Author SHA1 Message Date
30dff8ba39 mod: added nix install action
Some checks failed
Publish packages to Attic / publish (push) Failing after 10m33s
2026-05-25 15:35:53 -04:00
065209ee75 mod: adjusted nixpkgs input
unstable to 25.11
2026-05-25 15:35:04 -04:00
3 changed files with 10 additions and 7 deletions

View File

@@ -8,18 +8,21 @@ on:
jobs: jobs:
publish: publish:
runs-on: nixos/nix runs-on: ubuntu-latest
env: env:
ATTIC_SERVER: ${{ secrets.ATTIC_SERVER }} ATTIC_SERVER: ${{ secrets.ATTIC_SERVER }}
ATTIC_CACHE: ${{ secrets.ATTIC_CACHE }} ATTIC_CACHE: ${{ secrets.ATTIC_CACHE }}
ATTIC_TOKEN: ${{ secrets.ATTIC_TOKEN }} ATTIC_TOKEN: ${{ secrets.ATTIC_TOKEN }}
NIX_CONFIG: experimental-features = nix-command flakes # NIX_CONFIG: experimental-features = nix-command flakes
steps: steps:
- name: Check out repository - name: Check out repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install upstream Nix
uses: cachix/install-nix-action@v31
- name: Install Attic client - name: Install Attic client
shell: bash shell: bash
run: | run: |

8
flake.lock generated
View File

@@ -74,16 +74,16 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1779357205, "lastModified": 1779467186,
"narHash": "sha256-cCO8aTqss5x9Ky8GWkpY0Hy5fyTZEbtifSUV8QjSzic=", "narHash": "sha256-nOesoDCiXcUftqbRBMz9tt4blI5PvljMWbm3kuCA+0s=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f83fc3c307e74bc5fd5adb7eb6b8b13ffd2a36e1", "rev": "b77b3de8775677f84492abe84635f87b0e153f0f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-unstable", "ref": "nixos-25.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@@ -2,7 +2,7 @@
description = "Miller Nix User Repository"; description = "Miller Nix User Repository";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
darwin.url = "github:LnL7/nix-darwin"; darwin.url = "github:LnL7/nix-darwin";