diff --git a/home-manager/hyprland.nix b/home-manager/hyprland.nix index bad1a77..30028f9 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/hyprland.nix @@ -1,5 +1,4 @@ -{ - programs.kitty.enable = true; +{ pkgs, ... }: { wayland.windowManager.hyprland = { enable = true; systemd.enable = false; @@ -110,7 +109,7 @@ ]; "$menu" = "uwsm app -- $(tofi-drun)"; - "$terminal" = "kitty"; + "$terminal" = "wezterm"; "$lock" = "hyprlock"; bindm = [ # Window Movement & Resizing @@ -181,16 +180,19 @@ ) ); }; + plugins = [ + # pkgs.hyprlandPlugins. + ]; }; home.sessionVariables = { - # HYPRCURSOR_THEME = "rose-pine-cursor-hyprcursor"; - # HYPRCURSOR_SIZE = "24"; - # XCURSOR_SIZE = "24"; - # GTK_BACKEND = "wayland"; - # QT_QPA_PLATFORM = "wayland;xcb"; - # QT_QPA_PLATFORMTHEME = "qt5ct"; - # XDG_SESSION_TYPE = "wayland"; - # XDG_CURRENT_DESKTOP = "Hyprland"; - # XDG_SESSION_DESKTOP = "Hyprland"; + HYPRCURSOR_THEME = "rose-pine-cursor-hyprcursor"; + HYPRCURSOR_SIZE = "24"; + XCURSOR_SIZE = "24"; + GTK_BACKEND = "wayland"; + QT_QPA_PLATFORM = "wayland;xcb"; + QT_QPA_PLATFORMTHEME = "qt5ct"; + XDG_SESSION_TYPE = "wayland"; + XDG_CURRENT_DESKTOP = "Hyprland"; + XDG_SESSION_DESKTOP = "Hyprland"; }; } diff --git a/hosts/arcadia/nixos.nix b/hosts/arcadia/nixos.nix index 91bc4b5..15217f3 100644 --- a/hosts/arcadia/nixos.nix +++ b/hosts/arcadia/nixos.nix @@ -31,8 +31,6 @@ inkscape ]; - nixpkgs.config.allowUnfree = true; - boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;