diff --git a/nodes/hosts/lappy/home/jay/home.nix b/nodes/hosts/lappy/home/jay/home.nix index 590df99..24a230e 100644 --- a/nodes/hosts/lappy/home/jay/home.nix +++ b/nodes/hosts/lappy/home/jay/home.nix @@ -1,13 +1,8 @@ { config, pkgs, inputs, lib, ... }: { imports = [ + ./programs/hyprland.nix ./programs/hyprpanel.nix ]; - - wayland.windowManager.hyprland = { - settings = { - "monitor" = "eDP-1, 2880x1800@120, 0x0, 1"; - }; - }; } diff --git a/nodes/hosts/lappy/home/jay/programs/hyprland.nix b/nodes/hosts/lappy/home/jay/programs/hyprland.nix new file mode 100644 index 0000000..41b606d --- /dev/null +++ b/nodes/hosts/lappy/home/jay/programs/hyprland.nix @@ -0,0 +1,7 @@ +{ pkgs, lib, ... }: { + wayland.windowManager.hyprland = { + settings = { + "monitor" = "eDP-1, 2880x1800@120, 0x0, 1"; + }; + }; +}