dotfiles/home/modules/gui/desktop/tofi/default.nix
2025-01-19 23:40:54 -06:00

16 lines
211 B
Nix
Executable file

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