From d243e3949c0ad815fc3453c08ed59adacf6e58c9 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 30 Jun 2025 16:59:56 -0400 Subject: [PATCH] just need a functional display manager now --- home/crow/Incarceron.nix | 2 +- hosts/common/optional/bluetooth.nix | 10 ++++++++++ hosts/nixos/Incarceron/default.nix | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 hosts/common/optional/bluetooth.nix 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" ]) ];