Compare commits

...

2 commits

Author SHA1 Message Date
69dfaddbf2
Add git to default packages for root
All checks were successful
EVAL aarch64-linux.sisko
BUILD x86_64-linux.picard
UPLOAD x86_64-linux.picard
DOWNLOAD x86_64-linux.picard
CACHIX x86_64-linux.picard
ATTIC x86_64-linux.picard
/ test (push) Successful in 40s
2025-05-17 09:47:19 +02:00
afa8f62bb8
Run CI only for x86_64-linux 2025-05-17 09:47:04 +02:00
2 changed files with 6 additions and 8 deletions

View file

@ -15,10 +15,7 @@ jobs:
echo "${{secrets.FORGEJO_SSH_KEY}}" > ~/.ssh/id_ed25519 echo "${{secrets.FORGEJO_SSH_KEY}}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts ssh-keyscan github.com >> ~/.ssh/known_hosts
ssh-keyscan sisko.wg.aciceri.dev >> ~/.ssh/known_hosts - name: Build with nix (x86_64-linux)
# - name: Build with nix (x86_64-linux) run: nix-fast-build --no-nom --systems "x86_64-linux" --attic-cache "nixfleet" --skip-cached --result-file result.json || true
# run: nix-fast-build --no-nom --systems "x86_64-linux" --attic-cache "nixfleet" --skip-cached --result-file result.json || true
- name: Build with nix (aarch64-linux)
run: nix-fast-build --no-nom --systems "" --attic-cache "nixfleet" --skip-cached --result-file result.json || true
- name: Report checks - name: Report checks
run: report-checks run: report-checks

View file

@ -18,9 +18,10 @@
nixpkgs.config.allowUnfree = true; # Forgive me Mr. Stallman :( nixpkgs.config.allowUnfree = true; # Forgive me Mr. Stallman :(
system.switch.enableNg = true; system.switch.enableNg = true;
environment.systemPackages = [ environment.systemPackages = with pkgs; [
pkgs.btop btop
pkgs.ncdu ncdu
git
]; ];
# FIXME not the best place # FIXME not the best place