b(rowser)(luetooth)
This commit is contained in:
parent
2ca81cd60e
commit
d127bddb0d
11 changed files with 30 additions and 6 deletions
20
modules/connectivity/bluetooth/default.nix
Normal file
20
modules/connectivity/bluetooth/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
bluetooth = {
|
||||
enable = lib.mkEnableOption "enable bluetooth";
|
||||
};
|
||||
};
|
||||
config = lib.mkIf config.bluetooth.enable {
|
||||
home.packages = with pkgs; [
|
||||
bluez
|
||||
bluetuith
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -8,6 +8,6 @@
|
|||
{
|
||||
imports = [
|
||||
./browser
|
||||
|
||||
./bluetooth
|
||||
];
|
||||
}
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
./desktop
|
||||
./misc
|
||||
./gaming
|
||||
./internet
|
||||
./connectivity
|
||||
./media
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
walker.enable = true;
|
||||
wallpaper.enable = true;
|
||||
grimblast.enable = true;
|
||||
audio.enable = true;
|
||||
};
|
||||
internet = lib.mkDefault {
|
||||
browsers = {
|
||||
|
|
@ -31,6 +32,7 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
bluetooth.enable = true;
|
||||
media = {
|
||||
images.enable = true;
|
||||
video.enable = true;
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
walker.enable = true;
|
||||
wallpaper.enable = true;
|
||||
grimblast.enable = true;
|
||||
audio.enable = true;
|
||||
};
|
||||
internet = lib.mkDefault {
|
||||
browsers = {
|
||||
|
|
@ -33,6 +34,7 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
bluetooth.enable = true;
|
||||
media = {
|
||||
images.nomacs.enable = true;
|
||||
video.mpv.enable = true;
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
config = lib.mkIf config.desktop.audio.enable {
|
||||
home.packages = with pkgs; [
|
||||
pavucontrol
|
||||
playerctl
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
./rofi.nix
|
||||
./wallpaper.nix
|
||||
./grimblast.nix
|
||||
./audio.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
wl-clipboard
|
||||
|
|
|
|||
|
|
@ -119,11 +119,9 @@
|
|||
"$mod, mouse:272, movewindow"
|
||||
"$mod, mouse:273, resizewindow"
|
||||
];
|
||||
binde = [
|
||||
bindel = [
|
||||
",XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+"
|
||||
];
|
||||
bindl = [
|
||||
",XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
|
||||
",XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
|
||||
];
|
||||
input = {
|
||||
kb_layout = "de";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue