mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 13:45:29 -08:00
Compare commits
2 commits
684845ec4f
...
33095b1e49
Author | SHA1 | Date | |
---|---|---|---|
33095b1e49 | |||
4d1efa07d5 |
2 changed files with 11 additions and 3 deletions
3
home.nix
3
home.nix
|
@ -27,7 +27,6 @@ let
|
|||
gitui # command line git tui
|
||||
hugo
|
||||
pkgs-stable.pandoc # utility for converting between document types
|
||||
protonvpn-cli
|
||||
pkgs-stable.qmk # QMK utility for compiling qmk firmware
|
||||
nextcloud-client # Nextcloud private syncing
|
||||
hddtemp
|
||||
|
@ -69,8 +68,6 @@ let
|
|||
signal-desktop # secure messaging service
|
||||
pkgs-stable.vscodium # when vim and emacs (somehow) isn't enough
|
||||
obs-studio # for video recording and virtual camera
|
||||
protonvpn-gui
|
||||
|
||||
|
||||
libsForQt5.kate # kate/kwrite
|
||||
libsForQt5.ark # kde archive manager
|
||||
|
|
|
@ -158,6 +158,17 @@ in
|
|||
|
||||
plugins = {
|
||||
|
||||
lsp = {
|
||||
enable = true;
|
||||
servers = {
|
||||
gopls = {
|
||||
enable = true;
|
||||
installLanguageServer = true;
|
||||
};
|
||||
html.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
nvim-tree = {
|
||||
enable = true;
|
||||
openOnSetup = true;
|
||||
|
|
Loading…
Reference in a new issue