nix-git/modules/kde.nix

55 lines
1.6 KiB
Nix
Raw Normal View History

2024-02-04 15:02:24 +01:00
{ config, pkgs, ... }:
{
# KDE desktop environment.
# See also: gnome-base.nix
# https://nixos.wiki/wiki/KDE
# TODO: if including modules that enable dconf, KDE does not start. Maybe some conflicting configs in ~/ from GNOME? Create new (blank) user and try to log in with it.
# TODO: Declarative KDE setting adjustments.
# - Plasma > Breeze Dark
# - Global theme > Breeze Dark
# - Touchpad > Invert scroll direction (natural scrolling)
# - Touchpad > Tap to click > unchecked
# - File search > Also index file content
# - On AC power > Button events handling > When laptop lid is closed > Do nothing
# - On AC power > Suspend session -> unchecked
imports = [
./audio.nix
];
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE desktop environment
#services.xserver.displayManager.sddm.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
# Don't install all programs of the KDE desktop.
# environment.plasma5.excludePackages = with pkgs.libsForQt5; [
# plasma-browser-integration
# konsole
# oxygen
# ];
# GNOME desktop integration.
# Using the following example configuration, QT applications will have a look similar to the GNOME desktop, using a dark theme
qt = {
enable = true;
platformTheme = "gnome";
style = "adwaita-dark";
};
# Configure keymap in X11.
2024-08-13 14:46:55 +02:00
services.xserver.xkb = {
2024-02-04 15:02:24 +01:00
layout = "de";
2024-08-13 14:46:55 +02:00
variant = "nodeadkeys";
2024-02-04 15:02:24 +01:00
};
# Enable Bluetooth support
# https://nixos.wiki/wiki/Bluetooth
hardware.bluetooth.enable = true;
}