1 files changed, 9 insertions, 0 deletions
diff --git a/host/Rory-desktop/configuration.nix b/host/Rory-desktop/configuration.nix
index bf37eab..c9f9e1b 100644
--- a/host/Rory-desktop/configuration.nix
+++ b/host/Rory-desktop/configuration.nix
@@ -91,6 +91,7 @@ args@{
i18n.defaultLocale = "en_US.UTF-8";
services = {
+ blueman.enable = true;
displayManager.sddm.enable = true;
xserver = {
displayManager.lightdm.enable = false;
@@ -178,8 +179,16 @@ args@{
jitsi-meet-electron
#nixd
gittyup
+ blueman
];
+ hardware = {
+ bluetooth = {
+ enable = true;
+ powerOnBoot = true;
+ };
+ };
+
xdg = {
portal = {
enable = true;
|