this repo has no description
0
fork

Configure Feed

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

:sparkles: allacritty config on home manager

+67 -2
+66
home-manager/alacritty/default.nix
··· 1 + { 2 + programs.alacritty = { 3 + enable = true; 4 + 5 + settings = { 6 + window = { 7 + dimensions = { 8 + columns = 90; 9 + lines = 20; 10 + }; 11 + 12 + padding = { 13 + x = 15; 14 + y = 15; 15 + }; 16 + 17 + dynamic_padding = false; 18 + 19 + decorations = "full"; 20 + }; 21 + 22 + font = { 23 + normal = { 24 + family = "Fira Code"; 25 + }; 26 + 27 + size = 11.0; 28 + }; 29 + 30 + cursor.style = "Underline"; 31 + 32 + key_bindings = [ 33 + { key = "V"; mods = "Alt"; action = "Paste"; } 34 + { key = "C"; mods = "Alt"; action = "Copy"; } 35 + ]; 36 + 37 + colors = { 38 + primary = { 39 + background = "0x1D1F28"; 40 + foreground = "0xFDFDFD"; 41 + }; 42 + normal= { 43 + black = "0x282A36"; 44 + red = "0xF37F97"; 45 + green = "0x5ADECD"; 46 + yellow = "0xF2A272"; 47 + blue = "0x8897F4"; 48 + magenta = "0xC574DD"; 49 + cyan = "0x79E6F3"; 50 + white = "0xFDFDFD"; 51 + }; 52 + bright = { 53 + black = "0x414458"; 54 + red = "0xFF4971"; 55 + green = "0x18E3C8"; 56 + yellow = "0xEBCB8B"; 57 + blue = "0xFF8037"; 58 + magenta = "0x556FFF"; 59 + cyan = "0x3FDCEE"; 60 + white = "0xBEBEC1"; 61 + }; 62 + indexed_colors = []; 63 + }; 64 + }; 65 + }; 66 + }
+1 -2
home-manager/default.nix
··· 7 7 home.homeDirectory = "/home/${username}"; 8 8 9 9 imports = [ 10 + ./alacritty 10 11 ./git 11 12 ./firefox 12 13 ]; ··· 88 89 89 90 # Let Home Manager install and manage itself. 90 91 programs = { 91 - alacritty.enable = true; 92 - 93 92 home-manager.enable = true; 94 93 95 94 emacs.enable = true;