summaryrefslogtreecommitdiff
path: root/modules/home-manager/hypr/autostart.nix
blob: 048afcc9b3c6bc60aef5839c1892a3cdd1e14323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, inputs, ... }:

# very broken, fix later

{
  config = lib.mkIf config.hyprland.enable {
    wayland.windowManager.hyprland.settings = {
      exec-once = [
        "[workspace 1 silent] zen-browser"
        "[workspace 7 silent] equibop"
      ];
    };
  };
}