default.nix 400 B

123456789101112131415161718192021222324
  1. { pkgs, lib, ... }:
  2. {
  3. imports = [
  4. ./style.nix
  5. ];
  6. programs.wofi = {
  7. enable = true;
  8. settings = {
  9. location = "center";
  10. width = 600;
  11. height = 400;
  12. allow_images = true;
  13. gtk_dark = true;
  14. no_actions = true;
  15. term = "alacritty";
  16. prompt = "drun";
  17. show = "drun";
  18. insensitive = true;
  19. matching = "multi-contains";
  20. };
  21. };
  22. }