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

16 lines
221 B
Nix
Raw Normal View History

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