dotfiles/home/modules/swaylock/default.nix

14 lines
219 B
Nix
Raw Normal View History

2025-01-08 01:05:45 -06:00
{flake, ...}: let
configPath = ./config;
2025-01-08 19:06:14 -06:00
settingsPath = import (configPath + /settings.nix) {
inherit
flake
;
};
2025-01-08 01:05:45 -06:00
in {
programs.swaylock = {
enable = true;
settings = settingsPath;
};
}