Compare commits

...

3 commits

Author SHA1 Message Date
Casper V. Kristensen f6d3c84ebb desktop: spelling dictionaries 2024-05-22 17:56:13 +02:00
Casper V. Kristensen b9174f1cf1 desktop: add xdg-utils for xdg-open 2024-05-22 17:54:42 +02:00
Casper V. Kristensen 80c4bf3e8a 'nix shell' fish alias 2024-05-22 17:54:10 +02:00
2 changed files with 15 additions and 0 deletions

View file

@ -10,6 +10,11 @@
interactiveShellInit = '' interactiveShellInit = ''
# fzf: use ctrl+f to list files and ctrl+g to show the git log # fzf: use ctrl+f to list files and ctrl+g to show the git log
fzf_configure_bindings --directory=\cf --git_log=\cg fzf_configure_bindings --directory=\cf --git_log=\cg
# allows 's foo bar' for 'nix shell nixpkgs#foo nixpkgs#bar'
function s --wraps 'nix shell'
nix shell nixpkgs#$argv
end
''; '';
}; };

View file

@ -8,8 +8,17 @@
# Packages useful on a desktop computer which don't require their own module # Packages useful on a desktop computer which don't require their own module
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
aspell
aspellDicts.da
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
firefox-wayland firefox-wayland
gimp gimp
hunspell
hunspellDicts.da-dk
hunspellDicts.en-gb-ise
hunspellDicts.en-us
jetbrains.pycharm-professional jetbrains.pycharm-professional
keepassxc keepassxc
(kodi-wayland.withPackages (kodiPackages: (kodi-wayland.withPackages (kodiPackages:
@ -24,6 +33,7 @@
tor-browser-bundle-bin tor-browser-bundle-bin
ungoogled-chromium ungoogled-chromium
vlc vlc
xdg-utils
]; ];
nixpkgs.config.allowUnfreePredicate = pkg: nixpkgs.config.allowUnfreePredicate = pkg: