diff --git a/modules/home-manager/hyprland/default.nix b/modules/home-manager/hyprland/default.nix index d3c8e3a..b17bb73 100644 --- a/modules/home-manager/hyprland/default.nix +++ b/modules/home-manager/hyprland/default.nix @@ -1,6 +1,15 @@ { pkgs, ... }: { - programs.kitty.enable = true; + programs.kitty = { + enable = true; + themeFile = "tokyo_night_night"; + font = { + package = pkgs.nerd-fonts.jetbrains-mono; + name = "JetBrainsMono NF"; + size = 14; + }; + }; + wayland.windowManager.hyprland = let # workspaces @@ -26,7 +35,7 @@ settings = { monitor = [ - ",preferred,auto,1" + ",1920x1080@60,0x0,1" ]; "$mod" = "SUPER"; bind = [ @@ -56,6 +65,8 @@ "fadeIn,1,5,default" "workspaces,1,3,default" ]; + + cursor.no_warps = true; }; }; } diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 1e148f0..bae86c7 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -51,10 +51,6 @@ wget ]; - fonts.packages = with pkgs; [ - nerd-fonts.jetbrains-mono - ]; - # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;