diff --git a/flake.nix b/flake.nix index fe55c001..aaeb70e0 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,9 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + # musnix = { + # url = "github:musnix/musnix"; + # }; nixgl = { url = "github:guibou/nixGL"; inputs.nixpkgs.follows = "nixpkgs"; @@ -38,6 +41,7 @@ verbose = true; }; } + # inputs.musnix.nixosModules.musnix self.nixosModules.location self.nixosModules.nix self.nixosModules.nixPath diff --git a/machines/nixps/configuration.nix b/machines/nixps/configuration.nix index 99d7e38f..3c57c7f3 100644 --- a/machines/nixps/configuration.nix +++ b/machines/nixps/configuration.nix @@ -35,18 +35,21 @@ in }; hardware.bumblebee.enable = false; hardware.nvidiaOptimus.disable = false; - services.blueman.enable = true; + services.blueman.enable = false; hardware.bluetooth = { - enable = true; - settings = { - General = { - Enable = "Source,Sink,Media,Socket"; - }; - }; + enable = false; + # settings = { + # General = { + # Enable = "Source,Sink,Media,Socket"; + # }; + # }; }; hardware.pulseaudio.support32Bit = true; hardware.opengl.driSupport32Bit = true; home-manager.users."${username}" = import ./home.nix; + + # musnix.enable = true; + networking.firewall = { enable = true; allowedTCPPortRanges = [ diff --git a/modules/nixos.nix b/modules/nixos.nix index e431b481..9fb98536 100644 --- a/modules/nixos.nix +++ b/modules/nixos.nix @@ -56,7 +56,7 @@ enable = true; # FIXME # extraModules = [ pkgs.pulseaudio-modules-bt ]; - package = pkgs.pulseaudioFull; + # package = pkgs.pulseaudioFull; }; sound.enable = true; system.stateVersion = "22.11";