From 04190ab15c9e62ad54686beb49228b229de761de Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 23 Dec 2025 23:57:35 +0000 Subject: [PATCH] ADDED exec hypr --- apps/hyprland/home.nix | 1 + apps/hyprland/hypr/exec.nix | 7 +++++++ home/hakase.nix | 1 + 3 files changed, 9 insertions(+) create mode 100644 apps/hyprland/hypr/exec.nix 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";