Compare commits
3 commits
e9be19a073
...
f6d3c84ebb
Author | SHA1 | Date | |
---|---|---|---|
f6d3c84ebb | |||
b9174f1cf1 | |||
80c4bf3e8a |
|
@ -10,6 +10,11 @@
|
|||
interactiveShellInit = ''
|
||||
# fzf: use ctrl+f to list files and ctrl+g to show the git log
|
||||
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
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
|
@ -8,8 +8,17 @@
|
|||
# Packages useful on a desktop computer which don't require their own module
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
aspell
|
||||
aspellDicts.da
|
||||
aspellDicts.en
|
||||
aspellDicts.en-computers
|
||||
aspellDicts.en-science
|
||||
firefox-wayland
|
||||
gimp
|
||||
hunspell
|
||||
hunspellDicts.da-dk
|
||||
hunspellDicts.en-gb-ise
|
||||
hunspellDicts.en-us
|
||||
jetbrains.pycharm-professional
|
||||
keepassxc
|
||||
(kodi-wayland.withPackages (kodiPackages:
|
||||
|
@ -24,6 +33,7 @@
|
|||
tor-browser-bundle-bin
|
||||
ungoogled-chromium
|
||||
vlc
|
||||
xdg-utils
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||
|
|
Loading…
Reference in a new issue