dotfiles/home/modules/swaylock/default.nix

10 lines
200 B
Nix
Raw Normal View History

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