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;
|
# config.allowUnfree = true;
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# # NixOS modules that ca
|
# # NixOS modules that can only be used on NixOS systems
|
||||||
n only be used on NixOS systems
|
|
||||||
nixModules = [
|
nixModules = [
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
inputs.sops-nix.nixosModules.sops
|
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
|
#+begin_src nix :tangle modules/home/input.nix
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
let
|
let
|
||||||
inherit (lib) mkmkOption types;
|
inherit (lib) mkOption types;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.swarselsystems.inputs = mkOption {
|
options.swarselsystems.inputs = mkOption {
|
||||||
|
|
@ -4760,6 +4759,7 @@ Enable OpenGL, Sound, Bluetooth and various drivers.
|
||||||
enableAllFirmware = true;
|
enableAllFirmware = true;
|
||||||
|
|
||||||
bluetooth = lib.mkIf config.swarselsystems.hasBluetooth {
|
bluetooth = lib.mkIf config.swarselsystems.hasBluetooth {
|
||||||
|
enable = true;
|
||||||
powerOnBoot = true;
|
powerOnBoot = true;
|
||||||
settings = {
|
settings = {
|
||||||
General = {
|
General = {
|
||||||
|
|
|
||||||
|
|
@ -121,8 +121,7 @@
|
||||||
# config.allowUnfree = true;
|
# config.allowUnfree = true;
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# # NixOS modules that ca
|
# # NixOS modules that can only be used on NixOS systems
|
||||||
n only be used on NixOS systems
|
|
||||||
nixModules = [
|
nixModules = [
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
let
|
let
|
||||||
inherit (lib) mkmkOption types;
|
inherit (lib) mkOption types;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.swarselsystems.inputs = mkOption {
|
options.swarselsystems.inputs = mkOption {
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@
|
||||||
enableAllFirmware = true;
|
enableAllFirmware = true;
|
||||||
|
|
||||||
bluetooth = lib.mkIf config.swarselsystems.hasBluetooth {
|
bluetooth = lib.mkIf config.swarselsystems.hasBluetooth {
|
||||||
|
enable = true;
|
||||||
powerOnBoot = true;
|
powerOnBoot = true;
|
||||||
settings = {
|
settings = {
|
||||||
General = {
|
General = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue