1
0

default.nix 479 B

1234567891011121314151617181920
  1. { config, pkgs, lib, inputs, ... }:
  2. {
  3. #wayland.windowManager.mango = {
  4. # enable = true;
  5. #};
  6. options.custom.hyprExtras = {
  7. monitors = lib.mkOption {
  8. type = lib.types.lines;
  9. default = ''
  10. hl.monitor({ output = "", mode = "preferred", position = "auto", scale = 1 })
  11. '';
  12. description = "Host-specific monitor configuration for Hyprland";
  13. };
  14. shell = lib.mkOption {
  15. type = lib.types.lines;
  16. default = '''';
  17. };
  18. };
  19. }