switch to kde

This commit is contained in:
Charlotte 🦝 Delenk 2022-11-07 20:26:52 +01:00
parent 4677e42138
commit aa8b568e9b
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
4 changed files with 16 additions and 4 deletions

View file

@ -48,7 +48,7 @@ in {
security.pam = {
services.login.u2fAuth = true;
services.sddm.u2fAuth = true;
services.swaylock.u2fAuth = true;
#services.swaylock.u2fAuth = true;
u2f = {
enable = true;
control = "required";
@ -96,12 +96,13 @@ in {
programs.dconf.enable = true;
services.xserver = {
enable = true;
displayManager.defaultSession = "sway";
#displayManager.defaultSession = "sway";
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
libinput.enable = true;
layout = "de";
xkbVariant = "neo";
};
programs.sway.enable = true;
#programs.sway.enable = true;
boot.kernelPackages = pkgs.linuxPackages_xanmod;
}

View file

@ -12,7 +12,7 @@
++ (
if desktop
then [
../programs/sway.nix
../programs/kde.nix
../programs/firefox.nix
../programs/theming.nix
../programs/waybar.nix

5
config/programs/kde.nix Normal file
View file

@ -0,0 +1,5 @@
_: {
imports = [
./kdeconnect.nix
];
}

View file

@ -0,0 +1,6 @@
_: {
services.kdeconnect = {
enable = true;
indicator = true;
};
}