1
0

default.nix 339 B

12345678910111213141516171819202122
  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 = 350;
  12. allow_images = true;
  13. gtk_dark = true;
  14. no_actions = true;
  15. term = "alacritty";
  16. prompt = "drun";
  17. show = "drun";
  18. };
  19. };
  20. }