more of the same

This commit is contained in:
mjallen18
2025-05-30 10:58:20 -05:00
parent 77272fb931
commit eece0b01f4
11 changed files with 73 additions and 305 deletions

View File

@@ -1,4 +1,44 @@
{ ... }:
{ pkgs, ... }:
{
imports = [ ./services.nix ];
# Programs configuration
programs = {
nix-ld = {
enable = true;
libraries = with pkgs; [
alsa-lib
bash
expat
fontconfig
freetype
icu
glib
gtk3
libgcc
libgdiplus
libGL
libpulseaudio
SDL2
vulkan-loader
xorg.libX11
xorg.libICE
xorg.libSM
xorg.libXcursor
xorg.libXrandr
xorg.libXi
zlib
];
};
coolercontrol.enable = true;
};
# Hardware configs
hardware = {
# Enable graphics
graphics = {
enable = true;
enable32Bit = true;
};
};
}