nixos/home/hyprland/hyprlock.nix
Torjus Håkestad e1049f0a16
Some checks failed
pre-commit / pre-commit (push) Failing after 23s
pre-commit / pre-commit (pull_request) Failing after 14m39s
Rice laptop
2024-04-21 11:46:33 +02:00

13 lines
260 B
Nix

{ config, pkgs, ... }: {
home.packages = with pkgs; [
unstable.hyprlock
];
xdg.configFile = {
"hypr/hyprlock.conf" = {
source = config.lib.file.mkOutOfStoreSymlink ./. + "/hyprlock.conf";
target = "hypr/hyprlock.conf";
};
};
}