2024-10-09 22:49:23 +02:00
|
|
|
{
|
2024-10-10 20:31:02 +02:00
|
|
|
config,
|
|
|
|
lib,
|
2024-10-09 22:49:23 +02:00
|
|
|
inputs',
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (inputs') quickshell;
|
|
|
|
inherit (lib.generators) toKeyValue;
|
2024-10-10 20:31:02 +02:00
|
|
|
inherit (config.meta.mainUser) username;
|
2024-10-09 22:49:23 +02:00
|
|
|
in {
|
2024-10-10 20:31:02 +02:00
|
|
|
home-manager.users.${username} = {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
qt6.qtimageformats # amog
|
|
|
|
qt6.qt5compat # shader fx
|
|
|
|
quickshell.packages.default
|
|
|
|
pamtester # lockscreen
|
|
|
|
grim
|
|
|
|
imagemagick # screenshot
|
|
|
|
];
|
2024-10-09 22:49:23 +02:00
|
|
|
|
2024-10-10 20:31:02 +02:00
|
|
|
# xdg.configFile."quickshell/manifest.conf".text = toKeyValue {} {
|
|
|
|
# shell = "${./shell}";
|
|
|
|
# # lockscreen = "${./lockscreen}";
|
|
|
|
# };
|
2024-10-09 22:49:23 +02:00
|
|
|
};
|
|
|
|
}
|