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;
|
virtualisation.virtualbox.host.enable = false;
|
||||||
users.extraGroups.vboxusers.members = [ cfg.username ];
|
users.extraGroups.vboxusers.members = [ cfg.username ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix-ld =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.nix-ld = {
|
||||||
|
enable = true;
|
||||||
|
libraries = with pkgs; [
|
||||||
|
ncurses
|
||||||
|
llvmPackages.libcxx
|
||||||
|
glibc
|
||||||
|
sqlite
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
rt-audio =
|
rt-audio =
|
||||||
|
@ -165,6 +179,7 @@ in
|
||||||
virtualisation
|
virtualisation
|
||||||
accounts
|
accounts
|
||||||
rt-audio
|
rt-audio
|
||||||
|
nix-ld
|
||||||
];
|
];
|
||||||
|
|
||||||
options.common.linux = {
|
options.common.linux = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue