❄️ My personnal NixOS configuration
nix-flake nixos-configuration linux dotfiles flake nix nix-config nixos nixos-flake linux-desktop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

「✨」 feat(theme): change the dark one to macchiato instea of frappe

adjoly 6b291326 57c3d7d9

+15 -15
+2 -2
modules/home-manager/catppuccin.nix
··· 13 13 config = lib.mkIf config.keyzox.theme.enable { 14 14 catppuccin = { 15 15 enable = true; 16 - flavor = "frappe"; 16 + flavor = "macchiato"; 17 17 accent = "lavender"; 18 18 cursors = { 19 19 enable = lib.mkDefault true; 20 20 accent = "lavender"; 21 - flavor = "frappe"; 21 + flavor = "macchiato"; 22 22 }; 23 23 btop = { 24 24 enable = lib.mkDefault false;
+2 -2
modules/home-manager/cli/tmux.nix
··· 40 40 41 41 # Window status 42 42 setw -g window-status-current-format ' #I #W #F ' 43 - setw -g window-status-current-style 'fg=#303446 bg=#babbf2' 43 + setw -g window-status-current-style 'fg=#24273a bg=#cad3f5' 44 44 setw -g window-status-format ' #I #[fg=white]#W #[fg=mauve]#F ' 45 45 46 46 # Pane status 47 - set -g pane-border-style 'fg=#292c3c' 47 + set -g pane-border-style 'fg=#1e2030' 48 48 49 49 ''; 50 50 };
+2 -2
modules/home-manager/gui/kitty.nix
··· 29 29 }; 30 30 xdg.configFile."kitty/dark-theme.auto.conf" = { 31 31 text = '' 32 - include ${pkgs.kitty-themes}/share/kitty-themes/themes/Catppuccin-Frappe.conf 32 + include ${pkgs.kitty-themes}/share/kitty-themes/themes/Catppuccin-Macchiato.conf 33 33 ''; 34 34 }; 35 35 xdg.configFile."kitty/no-preference-theme.auto.conf" = { 36 36 text = '' 37 - include ${pkgs.kitty-themes}/share/kitty-themes/themes/Catppuccin-Frappe.conf 37 + include ${pkgs.kitty-themes}/share/kitty-themes/themes/Catppuccin-Macchiato.conf 38 38 ''; 39 39 }; 40 40 };
+5 -5
modules/home-manager/gui/wm/tofi.nix
··· 30 30 padding-bottom = 8; 31 31 scale = true; 32 32 33 - text-color = "#babbf1"; 34 - selection-color = "#ca9ee6"; 35 - prompt-color = "#ca9ee6"; 33 + text-color = "#b7bdf8"; 34 + selection-color = "#c6a0f6"; 35 + prompt-color = "#c6a0f6"; 36 36 result-spacing = "13"; 37 37 corner-radius = "10"; 38 - border-color = "#ca9ee6"; 38 + border-color = "#c6a0f6"; 39 39 prompt-padding = 8; 40 40 41 - background-color = "#292c3c"; 41 + background-color = "#1e2030"; 42 42 43 43 font = "monospace"; 44 44 font-size = 18;
+1 -1
modules/home-manager/gui/wm/waybar.nix
··· 187 187 margin: 6px 4px; 188 188 padding: 2px 8px; 189 189 border-radius: 8px; 190 - background-color: #303446; 190 + background-color: @base; 191 191 border: 2px solid transparent; 192 192 } 193 193 .modules-left #workspaces {
+1 -1
modules/nixos/catppuccin.nix
··· 13 13 config = lib.mkIf config.keyzox.theme.enable { 14 14 catppuccin = { 15 15 enable = true; 16 - flavor = "frappe"; 16 + flavor = "macchiato"; 17 17 accent = "lavender"; 18 18 }; 19 19 };
+1 -1
pkgs/keyznvim/config/color.nix
··· 8 8 default_integrations = true; 9 9 flavour = "auto"; 10 10 background = { 11 - dark = "frappe"; 11 + dark = "macchiato"; 12 12 light = "latte"; 13 13 }; 14 14 integrations = {
+1 -1
pkgs/keyznvim/config/plugins/autodarkmode.nix
··· 22 22 require(\"auto-dark-mode\").setup { 23 23 update_interval = 1000, 24 24 set_dark_mode = function() 25 - vim.cmd('Catppuccin frappe') 25 + vim.cmd('Catppuccin macchiato') 26 26 vim.cmd(\"hi Normal ctermbg=none guibg=none\") 27 27 end, 28 28 set_light_mode = function()