My NixOS config, I don't know what I am doing, don't use this
0
fork

Configure Feed

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

Fix Catppuccin & Add Ghostty config

+34 -5
+9 -5
home/default.nix
··· 1 1 { username, ... }: 2 2 { 3 3 imports = [ 4 + ./ghostty.nix 4 5 ./sway.nix 5 6 ./waybar.nix 6 7 ]; ··· 12 13 programs.home-manager.enable = true; 13 14 14 15 # ── Catppuccin ───────────────────────────────────────────────────────────── 15 - # catppuccin = { 16 - # flavor = "macchiato"; 17 - # accent = "lavender"; 18 - # enable = true; 19 - # }; 16 + catppuccin = { 17 + enable = true; 18 + 19 + flavor = "macchiato"; 20 + accent = "lavender"; 21 + 22 + waybar.enable = false; 23 + }; 20 24 }
+25
home/ghostty.nix
··· 1 + { ... }: 2 + { 3 + programs.ghostty = { 4 + enable = true; 5 + 6 + settings = { 7 + font-family = "Monaspace Krypton"; 8 + 9 + font-feature = [ 10 + "ss01" 11 + "ss02" 12 + "ss03" 13 + "ss04" 14 + "ss05" 15 + "ss06" 16 + "ss07" 17 + "ss08" 18 + "ss09" 19 + "ss10" 20 + "calt" 21 + "liga" 22 + ]; 23 + }; 24 + }; 25 + }