Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed Nov 24, 2022
1 parent 9c168cd commit 9515e67
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 @@ -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";
Expand All @@ -38,6 +41,7 @@
verbose = true;
};
}
# inputs.musnix.nixosModules.musnix
self.nixosModules.location
self.nixosModules.nix
self.nixosModules.nixPath
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 9515e67

Please sign in to comment.