dotfiles/home/modules/swaylock/default.nix
2025-01-18 03:50:54 -06:00

15 lines
221 B
Nix
Executable file

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