mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +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/bootloader.nix
|
||||
../../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
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
||||
qt.enable = true;
|
||||
|
||||
nix.nixPath = [
|
||||
@@ -192,7 +191,6 @@
|
||||
brightnessctl # control brightness
|
||||
pulseaudio # sound server
|
||||
playerctl # controls media player
|
||||
blueman # GTK-based Bluetooth Manager
|
||||
udiskie # removable disk automounter for udisks
|
||||
cliphist # Wayland clipboard manager
|
||||
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