diff --git a/machines/configuration_old.nix b/machines/configuration_old.nix index 2ebb3b6..d0e0dbf 100644 --- a/machines/configuration_old.nix +++ b/machines/configuration_old.nix @@ -63,7 +63,6 @@ services.printing.enable = true; # Enable sound with pipewire. - sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { diff --git a/machines/jupiter/configuration.nix b/machines/jupiter/configuration.nix index 0725066..9a62d6d 100644 --- a/machines/jupiter/configuration.nix +++ b/machines/jupiter/configuration.nix @@ -14,6 +14,16 @@ boot.loader.efi.canTouchEfiVariables = true; boot.kernelPackages = pkgs.unstable.linuxPackages_latest; + # Shitfuck SOnar Dotnet dependency + nixpkgs.config = { + permittedInsecurePackages = [ + "aspnetcore-runtime-6.0.36" + "aspnetcore-runtime-wrapped-6.0.36" + "dotnet-sdk-6.0.428" + "dotnet-sdk-wrapped-6.0.428" + ]; + }; + # Enable the X11 windowing system. # services.xserver.enable = true; @@ -38,8 +48,6 @@ # Enable CUPS to print documents. services.printing.enable = true; - # Enable sound with pipewire. - sound.enable = true; security.rtkit.enable = true; system = { diff --git a/machines/mibook/configuration.nix b/machines/mibook/configuration.nix index 89c8b2d..afc02aa 100644 --- a/machines/mibook/configuration.nix +++ b/machines/mibook/configuration.nix @@ -35,7 +35,6 @@ services.printing.enable = true; # Enable sound with pipewire. - sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { diff --git a/modules/hardware/sound/default.nix b/modules/hardware/sound/default.nix index 50f9e2c..52a6094 100644 --- a/modules/hardware/sound/default.nix +++ b/modules/hardware/sound/default.nix @@ -8,8 +8,7 @@ in }; config = lib.mkIf cfg.enable { - sound.enable = true; - hardware.pulseaudio.enable = true; + hardware.pulseaudio.enable = false; hardware.pulseaudio.support32Bit = true; users.extraUsers.finn.extraGroups = [ "audio" ]; };