mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
fix: reenable bluetooth
This commit is contained in:
parent
8a6b311f86
commit
57426b9bf3
4 changed files with 6 additions and 6 deletions
|
|
@ -518,8 +518,7 @@ Lastly I define some common module lists that I can simply load depending on the
|
|||
# config.allowUnfree = true;
|
||||
# };
|
||||
|
||||
# # NixOS modules that ca
|
||||
n only be used on NixOS systems
|
||||
# # NixOS modules that can only be used on NixOS systems
|
||||
nixModules = [
|
||||
inputs.stylix.nixosModules.stylix
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
|
|
@ -4438,7 +4437,7 @@ Modules that need to be loaded on the NixOS level. Note that these will not be a
|
|||
#+begin_src nix :tangle modules/home/input.nix
|
||||
{ lib, config, ... }:
|
||||
let
|
||||
inherit (lib) mkmkOption types;
|
||||
inherit (lib) mkOption types;
|
||||
in
|
||||
{
|
||||
options.swarselsystems.inputs = mkOption {
|
||||
|
|
@ -4760,6 +4759,7 @@ Enable OpenGL, Sound, Bluetooth and various drivers.
|
|||
enableAllFirmware = true;
|
||||
|
||||
bluetooth = lib.mkIf config.swarselsystems.hasBluetooth {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
settings = {
|
||||
General = {
|
||||
|
|
|
|||
|
|
@ -121,8 +121,7 @@
|
|||
# config.allowUnfree = true;
|
||||
# };
|
||||
|
||||
# # NixOS modules that ca
|
||||
n only be used on NixOS systems
|
||||
# # NixOS modules that can only be used on NixOS systems
|
||||
nixModules = [
|
||||
inputs.stylix.nixosModules.stylix
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{ lib, config, ... }:
|
||||
let
|
||||
inherit (lib) mkmkOption types;
|
||||
inherit (lib) mkOption types;
|
||||
in
|
||||
{
|
||||
options.swarselsystems.inputs = mkOption {
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
enableAllFirmware = true;
|
||||
|
||||
bluetooth = lib.mkIf config.swarselsystems.hasBluetooth {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
settings = {
|
||||
General = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue