34 lines
758 B
Nix
34 lines
758 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs',
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (inputs') quickshell;
|
|
inherit (lib.generators) toKeyValue;
|
|
inherit (config.meta.mainUser) username;
|
|
in {
|
|
home-manager.users.${username} = {
|
|
home.packages = with pkgs; [
|
|
qt6.qtimageformats # amog
|
|
qt6.qt5compat # shader fx
|
|
(quickshell.packages.default.override {
|
|
withJemalloc = true;
|
|
withQtSvg = true;
|
|
withX11 = true;
|
|
withPipewire = true;
|
|
withPam = true;
|
|
withHyprland = true;
|
|
})
|
|
pamtester # lockscreen
|
|
grim
|
|
imagemagick # screenshot
|
|
];
|
|
|
|
# xdg.configFile."quickshell/manifest.conf".text = toKeyValue {} {
|
|
# shell = "${./shell}";
|
|
# # lockscreen = "${./lockscreen}";
|
|
# };
|
|
};
|
|
}
|