feat: added print-manager

This commit is contained in:
Nick 2025-05-12 18:42:15 -05:00
parent 999a51da45
commit 0c9c09d01b
2 changed files with 12 additions and 0 deletions

View file

@ -69,6 +69,7 @@ in
# niri
wayland
theming
printManager
;
};
};

View file

@ -0,0 +1,11 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs.kdePackages)
print-manager
;
};
}