15 lines
425 B
Nix
15 lines
425 B
Nix
{ inputs, pkgs, lib, system, impurity, ... }: let
|
|
inherit (inputs) quickshell;
|
|
in {
|
|
home.packages = with pkgs; [
|
|
qt6.qtimageformats # amog
|
|
quickshell.packages.${system}.default
|
|
pamtester # lockscreen
|
|
grim imagemagick # screenshot
|
|
];
|
|
|
|
xdg.configFile."quickshell/manifest.conf".text = lib.generators.toKeyValue {} {
|
|
shell = impurity.link ./shell;
|
|
lockscreen = impurity.link ./lockscreen;
|
|
};
|
|
}
|