Enable nix-ld
This commit is contained in:
parent
0457dd5172
commit
dc7f6c51d7
1 changed files with 15 additions and 0 deletions
|
@ -117,6 +117,20 @@ let
|
|||
virtualisation.virtualbox.host.enable = false;
|
||||
users.extraGroups.vboxusers.members = [ cfg.username ];
|
||||
};
|
||||
|
||||
nix-ld =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
ncurses
|
||||
llvmPackages.libcxx
|
||||
glibc
|
||||
sqlite
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
rt-audio =
|
||||
|
@ -165,6 +179,7 @@ in
|
|||
virtualisation
|
||||
accounts
|
||||
rt-audio
|
||||
nix-ld
|
||||
];
|
||||
|
||||
options.common.linux = {
|
||||
|
|
Loading…
Add table
Reference in a new issue