This commit is contained in:
2026-07-23 20:28:54 +02:00
parent 4babfc0f1e
commit c79d2fef9a
5 changed files with 72 additions and 88 deletions
+17 -2
View File
@@ -1,7 +1,7 @@
{
config,
pkgs,
sls-steam,
options,
...
}:
@@ -152,6 +152,7 @@
virtualisation.docker.enable = true;
services.goxlr-utility.enable = true;
services.lact.enable = true;
services.rsync.enable = true;
programs.kdeconnect.enable = true;
programs.neovim.enable = true;
programs.tmux.enable = true;
@@ -185,7 +186,21 @@
};
};
programs.nix-ld.enable = true;
programs.nix-ld = {
enable = true;
libraries = options.programs.nix-ld.libraries.default ++ (
with pkgs; [
dbus # libdbus-1.so.3
fontconfig # libfontconfig.so.1
freetype # libfreetype.so.6
glib # libglib-2.0.so.0
libGL # libGL.so.1
libxkbcommon # libxkbcommon.so.0
libx11 # libX11.so.6
wayland
]
);
};
services.pipewire = {
enable = true;