From e9001dca6449315cdacc952e858192e87641b82f Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Tue, 10 Sep 2024 17:40:32 +0200 Subject: [PATCH 1/2] Default to scaling 1.0 --- modules/home/hyprland/config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/hyprland/config.nix b/modules/home/hyprland/config.nix index 5c30254..f60e804 100644 --- a/modules/home/hyprland/config.nix +++ b/modules/home/hyprland/config.nix @@ -295,7 +295,7 @@ }; extraConfig = " - monitor=,preferred,auto,auto + monitor=,preferred,auto,1 xwayland { force_zero_scaling = true From 8f24262eb7e32d86537aad1cc8e1a70256d3bd95 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Tue, 10 Sep 2024 17:40:40 +0200 Subject: [PATCH 2/2] Add lunarvim --- modules/home/nvim.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/home/nvim.nix b/modules/home/nvim.nix index 8eccd06..5539b9f 100644 --- a/modules/home/nvim.nix +++ b/modules/home/nvim.nix @@ -3,4 +3,7 @@ enable = true; vimAlias = true; }; + home.packages = [pkgs.lunarvim]; + + home.sessionPath = ["${pkgs.clang-tools}/bin:$PATH"]; }