this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(hardware/bluetooth): init

+23 -1
+1
hosts/galatea/options.nix
··· 12 12 zram.enable = true; 13 13 }; 14 14 desktops.plasma6.enable = true; 15 + hardware.bluetooth.enable = true; 15 16 programs = { 16 17 fish.enable = true; 17 18 foot.enable = true;
+1 -1
modules/default.nix
··· 1 1 { 2 - imports = [./core ./desktops ./profiles ./programs ./services]; 2 + imports = [./core ./desktops ./hardware ./profiles ./programs ./services]; 3 3 }
+18
modules/hardware/bluetooth.nix
··· 1 + { 2 + lib, 3 + config, 4 + ... 5 + }: let 6 + cfg = config.cfg.hardware.bluetooth; 7 + in { 8 + options.cfg.hardware.bluetooth.enable = lib.mkEnableOption "bluetooth"; 9 + config = lib.mkIf cfg.enable { 10 + hardware.bluetooth = { 11 + enable = true; 12 + settings.General = { 13 + PairableTimeout = 30; 14 + DiscoverableTimeout = 30; 15 + }; 16 + }; 17 + }; 18 + }
+3
modules/hardware/default.nix
··· 1 + { 2 + imports = [./bluetooth.nix]; 3 + }