dotfiles/home/modules/swaylock/default.nix
2025-01-08 19:06:14 -06:00

13 lines
219 B
Nix
Executable file

{flake, ...}: let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) {
inherit
flake
;
};
in {
programs.swaylock = {
enable = true;
settings = settingsPath;
};
}