enable the Ly login manager
This commit is contained in:
parent
eeb197bdd8
commit
753fbad8c5
1 changed files with 18 additions and 3 deletions
|
@ -181,6 +181,10 @@ in
|
||||||
# ollama & Co. storage
|
# ollama & Co. storage
|
||||||
{ directory = "/var/lib/private"; mode = "0700"; }
|
{ directory = "/var/lib/private"; mode = "0700"; }
|
||||||
];
|
];
|
||||||
|
files = [
|
||||||
|
# Ly last used user and Co.
|
||||||
|
"/etc/ly/save.ini"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# enable fast dbus
|
# enable fast dbus
|
||||||
|
@ -241,11 +245,22 @@ in
|
||||||
# use X11/wayland layout for console, too
|
# use X11/wayland layout for console, too
|
||||||
console.useXkbConfig = true;
|
console.useXkbConfig = true;
|
||||||
|
|
||||||
# enable SDDM & the KDE Plasma Desktop Environment with Wayland
|
# enable the KDE Plasma Desktop Environment
|
||||||
services.desktopManager.plasma6.enable = true;
|
services.desktopManager.plasma6.enable = true;
|
||||||
services.displayManager.sddm = {
|
|
||||||
|
# enable the Ly login manager with proper KWallet integration
|
||||||
|
services.displayManager.ly = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland.enable = true;
|
settings = {
|
||||||
|
animation = "matrix";
|
||||||
|
load = true;
|
||||||
|
save = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
security.pam.services.ly.kwallet = {
|
||||||
|
enable = true;
|
||||||
|
forceRun = true;
|
||||||
|
package = pkgs.kdePackages.kwallet-pam;
|
||||||
};
|
};
|
||||||
|
|
||||||
# enable sound with PipeWire
|
# enable sound with PipeWire
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue