dotfiles/home/modules/gui/desktop/hypr/swaylock/default.nix

16 lines
223 B
Nix
Raw Normal View History

2025-01-31 01:49:36 -06:00
{
config,
flake,
...
}:
2025-01-18 03:50:54 -06:00
let
2025-01-08 01:05:45 -06:00
configPath = ./config;
2025-01-31 01:49:36 -06:00
settingsPath = import (configPath + /settings.nix) { inherit config flake; };
2025-01-18 03:50:54 -06:00
in
{
2025-01-08 01:05:45 -06:00
programs.swaylock = {
enable = true;
settings = settingsPath;
};
}