13 lines
371 B
Nix
13 lines
371 B
Nix
{ inputs, pkgs, lib, system, impurity, ... }: let
|
|
inherit (inputs) quickshell;
|
|
in {
|
|
home.packages = with pkgs; [
|
|
quickshell.packages.${system}.default
|
|
pamtester # lockscreen
|
|
];
|
|
|
|
xdg.configFile."quickshell/manifest.conf".text = lib.generators.toKeyValue {} {
|
|
background = impurity.link ./background;
|
|
lockscreen = impurity.link ./lockscreen;
|
|
};
|
|
}
|