From 44a9bb605b4fa4cba4a9299f9e06abc076c87df6 Mon Sep 17 00:00:00 2001 From: foglar Date: Sat, 14 Dec 2024 17:42:38 +0100 Subject: [PATCH] fix blueman and cleanup --- TODO.md | 2 +- leanix/configuration.nix | 12 ++++++++---- nixos/system/system.nix | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/TODO.md b/TODO.md index f6c5e9d..c52cc7e 100644 --- a/TODO.md +++ b/TODO.md @@ -8,4 +8,4 @@ - [x] Stylix theming - [ ] Enabling nvidia graphics and disabling it - [ ] Modularity connected via configuration.nix file with home manager (disable gnome, gnome configuration will be disabled too) -- [ ] Rofi theme and other themes, where are colors setup declaratively +- [x] Rofi theme and other themes, where are colors setup declaratively diff --git a/leanix/configuration.nix b/leanix/configuration.nix index ca1f55e..6333549 100644 --- a/leanix/configuration.nix +++ b/leanix/configuration.nix @@ -37,7 +37,6 @@ extraGroups = ["wheel"]; }; - sys = { audio.enable = true; desktop = { @@ -48,11 +47,16 @@ fonts.packages = true; locales.enable = true; network.enable = true; - bluetooth.enable = true; - bluetooth.blueman.enable = false; + bluetooth = { + enable = true; + blueman.enable = true; + }; nvidia.enable = false; printing.enable = false; - login.sddm.enable = false; + login = { + sddm.enable = true; + gdm.enable = true; + }; style.enable = true; }; diff --git a/nixos/system/system.nix b/nixos/system/system.nix index fbdf20d..37f59cf 100644 --- a/nixos/system/system.nix +++ b/nixos/system/system.nix @@ -23,7 +23,7 @@ network.enable = lib.mkDefault true; bluetooth = { enable = lib.mkDefault true; - blueman = lib.mkDefault true; + blueman.enable = lib.mkDefault true; }; nvidia.enable = lib.mkDefault true; printing.enable = lib.mkDefault true;