From 8359a6911119e1d01540c5f8dc232e9cd2fb6aaa Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 31 Mar 2026 19:36:46 +0200 Subject: [PATCH] feat(hosts/fix): adding the thunderbird program installation --- hosts/fix/configuration.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/hosts/fix/configuration.nix b/hosts/fix/configuration.nix index d8b4394..3d1fb03 100644 --- a/hosts/fix/configuration.nix +++ b/hosts/fix/configuration.nix @@ -28,12 +28,17 @@ in }; hardware = { - graphics.enable = true; + graphics = { + enable = true; + enable32Bit = true; + }; nvidia = { open = false; modesetting.enable = true; - powerManagement.enable = false; - powerManagement.finegrained = false; + powerManagement = { + enable = false; + finegrained = false; + }; nvidiaSettings = true; package = config.boot.kernelPackages.nvidiaPackages.stable; }; @@ -63,14 +68,17 @@ in }; programs = { + thunderbird.enable = true; hyprland = { enable = true; xwayland.enable = true; }; }; - environment.systemPackages = [ + environment.systemPackages = with pkgs; [ mullvad-autostart + pciutils + vulkan-tools ]; services = { @@ -114,6 +122,7 @@ in enable = true; extraPortals = [ pkgs.xdg-desktop-portal-hyprland + pkgs.xdg-desktop-portal-gtk ]; config.common.default = "*"; };