📦 add nix-ld
Some checks failed
Build all NixOS Configurations / nix build (push) Has been cancelled

This commit is contained in:
Ingolf Wagner 2025-04-29 11:49:01 +02:00
parent a8013b1818
commit 28bea3abc3
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
2 changed files with 8 additions and 0 deletions

View file

@ -23,6 +23,7 @@
./ssh-cherry.nix
./ferdium.nix
./nix-ld.nix
];

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.nix-ld.enable = true;
environment.systemPackages = [
pkgs.nix-ld
];
}