diff --git a/.gitignore b/.gitignore index 96242ab..f773ea1 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ !machines/enka/gtk/ !machines/enka/helix/ !machines/enka/hyprland/ +!machines/enka/kitty/ !machines/enka/networkmanager/ !machines/enka/nushell/ !machines/enka/openttd/ diff --git a/machines/enka/default.nix b/machines/enka/default.nix index b29f22a..6ff5f33 100644 --- a/machines/enka/default.nix +++ b/machines/enka/default.nix @@ -19,6 +19,7 @@ ./gtk ./helix ./hyprland + ./kitty ./networkmanager ./nushell ./openttd diff --git a/machines/enka/fuzzel/default.nix b/machines/enka/fuzzel/default.nix index a86c499..7772ae2 100644 --- a/machines/enka/fuzzel/default.nix +++ b/machines/enka/fuzzel/default.nix @@ -4,7 +4,7 @@ homeConfiguration "nixos" { programs.fuzzel = enabled { settings.main = { font = "JetBrainsMono:size=12"; - prompt = "❯ "; + prompt = ''"❯ "''; terminal = "kitty"; @@ -12,16 +12,21 @@ homeConfiguration "nixos" { horizontal-pad = 10; vertical-pad = 10; - inner-pad = 5; - - background-color = "1D2021"; - text = "DDC7A1"; - match = "D79921"; - selection = "DDC7A1"; - selection-text = "1D2021"; - border = "D79921"; + inner-pad = 10; }; - settings.border.radius = 0; + settings.colors = { + background = "1D2021FF"; + text = "DDC7A1FF"; + match = "D79921FF"; + selection = "DDC7A1FF"; + selection-text = "1D2021FF"; + border = "D79921FF"; + }; + + settings.border = { + radius = 0; + width = 3; + }; }; } diff --git a/machines/enka/hyprland/default.nix b/machines/enka/hyprland/default.nix index 2da1a48..40da285 100644 --- a/machines/enka/hyprland/default.nix +++ b/machines/enka/hyprland/default.nix @@ -64,7 +64,7 @@ bind = SUPER, W, exec, firefox bind = SUPER, D, exec, discord - bind = , Print, exec, grim -g "$(slurp)" - | wl-copy + bind = , Print, exec, sh -c 'grim -g "$(slurp)" - | wl-copy' bind = SHIFT, Print, exec, kazam $active_color = 0xD79921 @@ -72,7 +72,7 @@ general { gaps_in = 5 - gaps_out = 5 + gaps_out = 10 col.active_border = $active_color col.nogroup_border_active = $active_color diff --git a/machines/enka/kitty/default.nix b/machines/enka/kitty/default.nix new file mode 100644 index 0000000..3e9e4f7 --- /dev/null +++ b/machines/enka/kitty/default.nix @@ -0,0 +1,14 @@ +{ pkgs, homeConfiguration, enabled, ... }: + +homeConfiguration "nixos" { + programs.kitty = enabled { + font.name = "JetBrainsMono Nerd Font"; + font.size = 16; + theme = "Gruvbox Dark"; + + settings = { + scrollback_lines = 100000; + mouse_hide_wait = 0; + } + }; +}