feat: changed desktop environment to KDE

This commit is contained in:
Zhongheng Liu 2025-07-18 21:16:40 +08:00
commit 2ac1e0c90d
Signed by: steven
GPG key ID: 805A28B071DAD84B
4 changed files with 10 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{ config, pkgs, ... }: {
imports = [
./hypr
#./hypr
./shells
../../common/variables.nix
./services

View file

@ -3,6 +3,8 @@
imports = [
./swaync.nix
./mpd.nix
./waybar.nix
# DEPRECATED due to switch to KDE
#./waybar.nix
];
}

View file

@ -28,6 +28,9 @@
openFirewall = true;
};
*/
services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.enable = true;
services.keyd = {
enable = true;
keyboards = {
@ -65,9 +68,7 @@
#enabled = "ibus";
#ibus.engines = with pkgs.ibus-engines; [rime];
};
programs.hyprland = {
enable = true;
};
#programs.hyprland = { enable = true; };
hardware.bluetooth = {
enable = true;
powerOnBoot = true;

View file

@ -1,6 +1,6 @@
{ ...
}: {
services.tlp = {
/*services.tlp = {
enable = true;
settings = {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
@ -14,5 +14,5 @@
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 20;
};
};
};*/
}