add some packages

This commit is contained in:
Motiejus Jakštys 2023-09-15 13:01:20 +03:00
parent b1e57c93f1
commit e3c5f37b43
3 changed files with 23 additions and 2 deletions

View File

@ -103,6 +103,10 @@
}; };
}; };
environment.systemPackages = with pkgs; [
texlive.combined.scheme-medium
];
networking = { networking = {
hostId = "3a54afcd"; hostId = "3a54afcd";
hostName = "fwminex"; hostName = "fwminex";

View File

@ -17,7 +17,7 @@ let b:gutentags_file_list_command = 'git ls-files'
call matchadd('ColorColumn', '\%81v', 100) call matchadd('ColorColumn', '\%81v', 100)
" thanks to drew de vault's vimrc, except swearing " thanks to drew de vault's vimrc, except swearing
set mouse=a set mouse=
set backupdir=~/.cache directory=~/.cache set backupdir=~/.cache directory=~/.cache
"nnoremap Q :grep <cword><CR> "nnoremap Q :grep <cword><CR>
nmap gs :grep <cursor><CR> nmap gs :grep <cursor><CR>

View File

@ -11,7 +11,7 @@
firefox = { firefox = {
enable = true; enable = true;
package = pkgs.firefox-devedition; package = pkgs.firefox-devedition;
#languagePacks = ["en" "lt" "de"]; languagePacks = ["en-US" "lt" "de"];
}; };
}; };
@ -37,7 +37,24 @@
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vlc
gimp
qgis
josm
pandoc
evince
gpicview
signal-desktop
element-desktop
gnome.nautilus
gnome.gnome-calculator
gnome.gnome-calendar
pavucontrol pavucontrol
libreoffice-qt
hunspell
hunspellDicts.en_US
]; ];
}; };
} }