diff --git a/apps/hyprland/home.nix b/apps/hyprland/home.nix index bcfcbae..27c95ff 100644 --- a/apps/hyprland/home.nix +++ b/apps/hyprland/home.nix @@ -2,6 +2,7 @@ imports = [ ./hypr/binds.nix ./hypr/general.nix + ./hypr/exec.nix ]; wayland.windowManager.hyprland.enable = true; } diff --git a/apps/hyprland/hypr/exec.nix b/apps/hyprland/hypr/exec.nix new file mode 100644 index 0000000..bd582c0 --- /dev/null +++ b/apps/hyprland/hypr/exec.nix @@ -0,0 +1,7 @@ +{ + wayland.windowManager.hyprland.settings = { + exec-once = [ + "waybar" + ]; + }; +} diff --git a/home/hakase.nix b/home/hakase.nix index 424d11d..6ef2658 100644 --- a/home/hakase.nix +++ b/home/hakase.nix @@ -3,6 +3,7 @@ ../modules/home/terminal.nix ../modules/home/apps.nix ../modules/home/hyprland.nix + ../modules/home/waybar.nix ]; home.stateVersion = "25.05";