Skip to content

Commit

Permalink
[nixps] feat: try musnix
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed May 2, 2023
1 parent f748d73 commit 8e5ee5f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.utils.follows = "flake-utils";
};
# musnix = {
# url = "github:musnix/musnix";
# };
nixgl = {
url = "github:guibou/nixGL";
inputs.flake-utils.follows = "flake-utils";
Expand All @@ -39,6 +42,7 @@
inputs.nixos-hardware.nixosModules.${machine}
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
inputs.home-manager.nixosModules.home-manager
# inputs.musnix.nixosModules.musnix
self.nixosModules.home-manager
self.nixosModules.location
self.nixosModules.nix
Expand Down
17 changes: 10 additions & 7 deletions machines/nixps/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 8e5ee5f

Please sign in to comment.