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

17 lines
220 B
Nix
Raw Normal View History

2025-01-18 03:50:54 -06:00
{
2025-01-31 01:49:36 -06:00
config,
2025-01-18 03:50:54 -06:00
flake,
...
}:
let
configPath = ./config;
2025-01-08 01:05:45 -06:00
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
{
programs.tofi = {
enable = true;
settings = settingsPath;
};
2025-01-08 01:05:45 -06:00
}