fix blueman and cleanup

This commit is contained in:
foglar 2024-12-14 17:42:38 +01:00
parent 171f51944a
commit 44a9bb605b
3 changed files with 10 additions and 6 deletions

View File

@ -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

View File

@ -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;
};

View File

@ -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;