this repo has no description
0
fork

Configure Feed

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

Use more home-manager programs

+14 -4
+14 -4
home.nix
··· 60 60 home.stateVersion = "21.11"; 61 61 62 62 home.packages = [ 63 - pkgs.tmux 64 63 pkgs.direnv 65 - pkgs.bat 66 64 pkgs.fd 67 65 pkgs.git 68 66 pkgs.ripgrep 69 67 pkgs.tig 70 68 pkgs.nmap 71 69 pkgs.rnix-lsp 72 - pkgs.delta 70 + pkgs.delta # TODO: configure as part of programs.git 73 71 pkgs.wget 74 72 # pkgs.vifm 75 73 ··· 112 110 extraConfig = (builtins.readFile ./nvim/init.vim); 113 111 }; 114 112 113 + programs.tmux = { 114 + enable = true; 115 + extraConfig = (builtins.readFile ./tmux.conf); 116 + }; 117 + 118 + programs.bat = { 119 + enable = true; 120 + config = { theme = "Solarized (light)"; }; 121 + }; 122 + 123 + programs.gh.enable = true; 124 + 115 125 programs.zsh = { 116 126 enable = true; 117 127 enableSyntaxHighlighting = true; ··· 161 171 162 172 home.file = { 163 173 ".tigrc".source = config.lib.file.mkOutOfStoreSymlink ./tigrc; 164 - ".tmux.conf".source = config.lib.file.mkOutOfStoreSymlink ./tmux.conf; 165 174 175 + # TODO: Use programs.git config instead 166 176 ".gitconfig".source = config.lib.file.mkOutOfStoreSymlink ./git/gitconfig; 167 177 ".gitignore".source = config.lib.file.mkOutOfStoreSymlink ./git/gitignore; 168 178