Added bluetooth support
This commit is contained in:
parent
37d76d2fae
commit
9d934145f1
@ -5,6 +5,7 @@
|
|||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/system/desktop/amd.nix
|
../../modules/system/desktop/amd.nix
|
||||||
../../modules/system/desktop/hyprland.nix
|
../../modules/system/desktop/hyprland.nix
|
||||||
|
../../modules/system/desktop/bluetooth.nix
|
||||||
../../modules/system/programs/syncthing.nix
|
../../modules/system/programs/syncthing.nix
|
||||||
../../modules/system/programs/thunar.nix
|
../../modules/system/programs/thunar.nix
|
||||||
../../modules/system/programs/virtualization.nix
|
../../modules/system/programs/virtualization.nix
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
./hyprlock.nix
|
./hyprlock.nix
|
||||||
./fixes.nix
|
./fixes.nix
|
||||||
./hypridle.nix
|
./hypridle.nix
|
||||||
|
./dunst.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
@ -30,6 +31,7 @@
|
|||||||
exec-once = [
|
exec-once = [
|
||||||
"waybar"
|
"waybar"
|
||||||
"hyprpaper"
|
"hyprpaper"
|
||||||
|
"lxqt-policykit-agent"
|
||||||
];
|
];
|
||||||
|
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
7
modules/home/desktop/hyprland/dunst.nix
Normal file
7
modules/home/desktop/hyprland/dunst.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.dunst = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
@ -10,5 +10,6 @@
|
|||||||
webcord
|
webcord
|
||||||
unstable.localsend
|
unstable.localsend
|
||||||
bitwarden
|
bitwarden
|
||||||
|
pavucontrol
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
16
modules/system/desktop/bluetooth.nix
Normal file
16
modules/system/desktop/bluetooth.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
powerOnBoot = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
Enable = "Source,Sink,Media,Socket";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
hardware.pulseaudio.enable = true;
|
||||||
|
|
||||||
|
services.blueman.enable = true;
|
||||||
|
}
|
@ -27,6 +27,8 @@
|
|||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
security.polkit.enable = true;
|
||||||
|
|
||||||
# Configure networking
|
# Configure networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
networking.wireless.iwd.enable = true;
|
networking.wireless.iwd.enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user