This commit is contained in:
Bug
2025-05-02 10:10:05 -05:00
parent 3c99fa2a8d
commit c21d7821b7
9 changed files with 261 additions and 13 deletions

View File

@@ -7,8 +7,19 @@
./flatpak.nix
];
nixpkgs.config.allowUnfree = true;
nixpkgs = {
config = {
allowUnfree = true;
#cudaSupport = true;
};
overlays = [
(self: super: {
plasticity = self.callPackage ./plasticity.nix { };
})
];
};
services.flatpak = {
enable = true;
@@ -54,8 +65,32 @@ ssh -R \"$\{name}:80:localhost:$\{port}\" tuns.sh'\'' _";
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
};
nix-ld = {
enable = true;
libraries = with pkgs; [
gtk3
glib
alsa-lib
libGL
libGLU
mesa
gcc
zlib
xorg.libX11
fontconfig
pcre2
xorg.libXext
gcc
xorg.libxcb
pkgs.qt5.full pkgs.freetype pkgs.fontconfig
pkgs.xorg.libX11 pkgs.xorg.libxcb pkgs.xorg.libXext
pkgs.xorg.libXrender
];
};
};
services = {
printing.enable = true;