Fixed plasma6; added kodi; added wluma; commented out printing; moved fingerprint shit

This commit is contained in:
Jurn Wubben 2025-06-22 23:05:42 +02:00
parent 1495d308dd
commit 488bd8911b
6 changed files with 83 additions and 41 deletions

View file

@ -2,14 +2,12 @@
config,
lib,
...
}: let
cfg = config.niksos.desktop.enable && config.niksos.desktop.hyprland;
in {
config = lib.mkIf cfg {
}: {
config = lib.mkIf config.niksos.desktop.enable {
# greetd display manager
services.greetd = let
session = {
command = "${lib.getExe config.programs.uwsm.package} start hyprland-uwsm.desktop";
command = lib.mkDefault "${lib.getExe config.programs.uwsm.package} start hyprland-uwsm.desktop";
user = "jsw";
};
in {
@ -22,6 +20,6 @@ in {
};
};
programs.uwsm.enable = true;
programs.uwsm.enable = lib.mkDefault true;
};
}