mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
bluetooth: separated into new file
This commit is contained in:
@@ -26,6 +26,7 @@
|
|||||||
../../hostsModules/laptop/nixos/autoUpdate.nix # auto update the flakes. Handles notification via libnotify and matrix-commander-rs
|
../../hostsModules/laptop/nixos/autoUpdate.nix # auto update the flakes. Handles notification via libnotify and matrix-commander-rs
|
||||||
../../hostsModules/laptop/nixos/bootloader.nix
|
../../hostsModules/laptop/nixos/bootloader.nix
|
||||||
../../hostsModules/laptop/nixos/networking.nix # firewall, ssh, networkmanager, etc.
|
../../hostsModules/laptop/nixos/networking.nix # firewall, ssh, networkmanager, etc.
|
||||||
|
../../modules/nixos/bluetooth.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@@ -33,8 +34,6 @@
|
|||||||
|
|
||||||
documentation.man.generateCaches = true; # used for the man script
|
documentation.man.generateCaches = true; # used for the man script
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
|
||||||
|
|
||||||
qt.enable = true;
|
qt.enable = true;
|
||||||
|
|
||||||
nix.nixPath = [
|
nix.nixPath = [
|
||||||
@@ -192,7 +191,6 @@
|
|||||||
brightnessctl # control brightness
|
brightnessctl # control brightness
|
||||||
pulseaudio # sound server
|
pulseaudio # sound server
|
||||||
playerctl # controls media player
|
playerctl # controls media player
|
||||||
blueman # GTK-based Bluetooth Manager
|
|
||||||
udiskie # removable disk automounter for udisks
|
udiskie # removable disk automounter for udisks
|
||||||
cliphist # Wayland clipboard manager
|
cliphist # Wayland clipboard manager
|
||||||
wl-clipboard # cli copy/past utilities for Wayland
|
wl-clipboard # cli copy/past utilities for Wayland
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
hardware.bluetooth.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
blueman # GTK-based Bluetooth Manager
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user