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

15 lines
223 B
Nix
Executable file

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