nixos/home/hyprland/hyprlock.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
287 B
Nix
Raw Permalink Normal View History

2024-04-22 20:34:14 +00:00
{
config,
osConfig,
pkgs,
...
}:
{
2024-04-21 09:46:33 +00:00
home.packages = with pkgs; [ hyprlock ];
xdg.configFile = {
"hypr/hyprlock.conf" = {
2024-04-22 20:34:14 +00:00
source = config.lib.file.mkOutOfStoreSymlink ./. + "/hyprlock_${osConfig.system.name}.conf";
2024-04-21 09:46:33 +00:00
target = "hypr/hyprlock.conf";
};
};
}