session and seat management daemon
0

Configure Feed

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

ci: switch to rustup to get rust 1.95+ for bevy_ecs 0.19

bevy_ecs 0.19 and edition 2024 require rustc >=1.95 which is newer than
the cargo package in nixery's nixpkgs snapshot. Switch all workflows from
the nixpkgs cargo/rustfmt packages to rustup installing stable at runtime.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

parzivale (Jul 12, 2026, 8:52 PM +0200) dd02d99f ad865e48

+19 -8
+5 -2
.tangled/workflows/check.yaml
··· 8 8 9 9 dependencies: 10 10 nixpkgs: 11 - - cargo 11 + - rustup 12 12 - gcc 13 13 - linux-pam 14 14 - pkg-config 15 15 16 16 steps: 17 17 - name: cargo check 18 - command: cargo check 18 + command: | 19 + rustup toolchain install stable 20 + rustup default stable 21 + cargo check
+5 -2
.tangled/workflows/coverage.yaml
··· 6 6 7 7 dependencies: 8 8 nixpkgs: 9 - - cargo 10 - - cargo-llvm-cov 9 + - rustup 11 10 - awscli2 12 11 - gcc 13 12 - llvm ··· 20 19 steps: 21 20 - name: coverage 22 21 command: | 22 + rustup toolchain install stable 23 + rustup default stable 24 + rustup component add llvm-tools-preview 25 + cargo install cargo-llvm-cov --locked 23 26 export LLVM_COV=$(which llvm-cov) 24 27 export LLVM_PROFDATA=$(which llvm-profdata) 25 28 cargo build --package daemon --features consolekit
+6 -3
.tangled/workflows/fmt.yaml
··· 11 11 - nixfmt-rfc-style 12 12 - taplo 13 13 - fd 14 - - cargo 15 - - rustfmt 14 + - rustup 16 15 17 16 steps: 18 17 - name: nix fmt ··· 21 20 fd -t f -e toml -x taplo fmt --check '{}' 22 21 23 22 - name: cargo fmt 24 - command: cargo fmt --check 23 + command: | 24 + rustup toolchain install stable 25 + rustup default stable 26 + rustup component add rustfmt 27 + cargo fmt --check
+3 -1
.tangled/workflows/test.yaml
··· 8 8 9 9 dependencies: 10 10 nixpkgs: 11 - - cargo 11 + - rustup 12 12 - gcc 13 13 - linux-pam 14 14 - pkg-config ··· 16 16 steps: 17 17 - name: cargo test 18 18 command: | 19 + rustup toolchain install stable 20 + rustup default stable 19 21 cargo build --package daemon 20 22 cargo test --package daemon