From 132f8607135464daf2b1a552ca50eb82740e4a86 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Thu, 24 Apr 2025 21:04:32 +0100 Subject: [PATCH] Enabled ZSH --- modules/hyprland.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/hyprland.nix b/modules/hyprland.nix index 6635cbe..97e5296 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -1,11 +1,15 @@ { config, pkgs, ... }: { - programs.hyprland = { - enable = true; - xwayland.enable = true; + programs = { + zsh.enable = true; + ssh.startAgent = true; + hyprland = { + enable = true; + xwayland.enable = true; + } }; - + services.displayManager = { enable = true; defaultSession = "hyprland";