diff options
author | stuebinm | 2024-12-09 14:49:11 +0100 |
---|---|---|
committer | stuebinm | 2024-12-09 14:49:11 +0100 |
commit | 209be8d664a88b50bb835ea43b607262d4a49067 (patch) | |
tree | 3bfd7946f3a220f77f65938420c7e32b9266ad27 | |
parent | 02648e447c0599a0dda5385d9f7d4fcc88fc14bf (diff) |
remaining cleanup for NixOS 24.11
-rw-r--r-- | home/packages.nix | 7 | ||||
-rw-r--r-- | ilex/configuration.nix | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/home/packages.nix b/home/packages.nix index 78ea25d..d21c76e 100644 --- a/home/packages.nix +++ b/home/packages.nix @@ -67,4 +67,11 @@ in (import inputs.traveltext { inherit pkgs; }) ]; + + xdg.desktopEntries."pavucontrol" = { + name = "pavucontrol"; + exec = "pavucontrol"; + terminal = false; + type = "Application"; + }; } diff --git a/ilex/configuration.nix b/ilex/configuration.nix index 2fa26cd..17bec18 100644 --- a/ilex/configuration.nix +++ b/ilex/configuration.nix @@ -9,7 +9,7 @@ boot.kernelPackages = pkgs.linuxKernel.packageAliases.linux_latest; - hardware.opengl.driSupport32Bit = true; + hardware.graphics.enable32Bit = true; hardware.bluetooth.enable = true; services.blueman.enable = true; @@ -55,6 +55,7 @@ host all all 127.0.0.1/32 trust host all all ::1/127 trust ''; + extensions = ps: [ ps.postgis ]; }; # services.redis.servers."bookwyrm" = { |