this repo has no description
0
fork

Configure Feed

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

Merge branch 'main' of github.com:ian-h-chamberlain/dotfiles

+20 -5
.config/newtabtools/personal/tileImages/1.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/10.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/11.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/12.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/13.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/14.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/2.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/3.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/4.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/5.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/7.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/8.png

This is a binary file and will not be displayed.

.config/newtabtools/personal/tileImages/9.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/1.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/10.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/11.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/13.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/2.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/3.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/4.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/5.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/6.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/7.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/8.png

This is a binary file and will not be displayed.

.config/newtabtools/work/tileImages/9.png

This is a binary file and will not be displayed.

+13 -1
.config/nixos/prismo/configuration.nix
··· 26 26 efi.canTouchEfiVariables = true; 27 27 }; 28 28 29 + kernel.sysctl = { 30 + "net.ipv6.conf.all.disable_ipv6" = 0; 31 + "net.ipv6.conf.default.disable_ipv6" = 0; 32 + "net.ipv6.conf.lo.disable_ipv6" = 0; 33 + }; 34 + 29 35 extraModulePackages = [ 30 36 # Set custom kernel modules to be higher priority, so they override 31 37 # default kernel module files (which seem to have priority 0) ··· 45 51 networking.networkmanager = { 46 52 enable = true; 47 53 # Tried https://askubuntu.com/a/1228914 but it doesn't seem to help... 48 - # wifi.scanRandMacAddress = false; 54 + wifi.scanRandMacAddress = false; 49 55 }; 50 56 51 57 # Open ports in the firewall. ··· 128 134 enable = true; 129 135 aggressive = true; 130 136 # verbose = true; 137 + settings.general = { 138 + min_fan1_speed = 3000; 139 + min_fan2_speed = 3000; 140 + }; 131 141 }; 132 142 133 143 # NOTE: this requires applesmc-next for kernel modules and TLP script ··· 184 194 }; 185 195 186 196 programs.fish.enable = true; 197 + 198 + security.sudo.enable = true; 187 199 188 200 # ========================================================================== 189 201 # User configuration
+3 -3
.gitmodules
··· 25 25 [submodule ".config/yadm/forkgit"] 26 26 path = .config/yadm/forkgit 27 27 url = https://github.com/brechtm/forkgit 28 - [submodule ".vim/pack/bundle/start/file-line"] 29 - path = .vim/pack/bundle/start/file-line 30 - url = https://github.com/bogado/file-line.git 31 28 [submodule ".vim/pack/bundle/start/vim-textobj-user"] 32 29 path = .vim/pack/bundle/start/vim-textobj-user 33 30 url = https://github.com/kana/vim-textobj-user.git ··· 52 49 [submodule ".config/yadm/vendored/yadm"] 53 50 path = .config/yadm/vendored/yadm 54 51 url = https://github.com/TheLocehiliosan/yadm.git 52 + [submodule ".vim/pack/bundle/start/vim-fetch"] 53 + path = .vim/pack/bundle/start/vim-fetch 54 + url = https://github.com/wsdjeg/vim-fetch.git
+4 -1
.vimrc
··· 64 64 autocmd FileType info nmap <buffer> go <Plug>(InfoGoto) 65 65 augroup END 66 66 67 - 68 67 " Augroups, must be before `syntax on` 69 68 augroup CustomTodo 70 69 autocmd! ··· 127 126 " let g:airline_extensions = [] 128 127 let g:airline_highlighting_cache = 1 129 128 let g:airline#extensions#whitespace#enabled = 1 129 + 130 130 let g:airline#extensions#tabline#enabled = 1 131 + let g:airline#extensions#tabline#fnamemod = ':p:~' 132 + 133 + let g:airline#extensions#tabline#show_buffers = 1 131 134 endif 132 135 133 136 " Code from: