diff --git a/home/crow/Incarceron.nix b/home/crow/Incarceron.nix index 0bda51d..97cbf6b 100644 --- a/home/crow/Incarceron.nix +++ b/home/crow/Incarceron.nix @@ -1,8 +1,8 @@ {...}: { imports = [ common/core - common/optional/desktops/niri.nix common/optional/desktops/sway common/optional/browsers/firefox.nix + common/optional/comms ]; } diff --git a/hosts/common/optional/bluetooth.nix b/hosts/common/optional/bluetooth.nix new file mode 100644 index 0000000..9455a27 --- /dev/null +++ b/hosts/common/optional/bluetooth.nix @@ -0,0 +1,10 @@ +{ + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; + + services.blueman = { + enable = true; + }; +} diff --git a/hosts/nixos/Incarceron/default.nix b/hosts/nixos/Incarceron/default.nix index 8260e5a..a6ee73e 100644 --- a/hosts/nixos/Incarceron/default.nix +++ b/hosts/nixos/Incarceron/default.nix @@ -33,7 +33,10 @@ "hosts/common/core" # Optional configs + "hosts/common/optional/audio.nix" + "hosts/common/optional/bluetooth.nix" "hosts/common/optional/keyd.nix" + "hosts/common/optional/pentesting.nix" ]) ];