diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-21 13:36:58 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-21 13:36:58 -0800 |
commit | 0221c50c38c44f4039465844c479cfc89a64c5e8 (patch) | |
tree | 28d29fda17b963a19f1c99ee819e8901a5cadef7 | |
parent | terminal: live reload of alacritty's configuration (diff) | |
download | world-0221c50c38c44f4039465844c479cfc89a64c5e8.tar.gz |
emacs: add aspell and dictionaries
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/emacs.nix | 4 | ||||
-rw-r--r-- | users/fcuny/desktop/syncthing.nix | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/users/fcuny/desktop/emacs.nix b/users/fcuny/desktop/emacs.nix index 67cf61c..ac72278 100644 --- a/users/fcuny/desktop/emacs.nix +++ b/users/fcuny/desktop/emacs.nix @@ -3,5 +3,9 @@ { home.packages = with pkgs; [ emacsPgtkGcc + aspell + aspellDicts.en + aspellDicts.en-science + aspellDicts.en-computers ]; } diff --git a/users/fcuny/desktop/syncthing.nix b/users/fcuny/desktop/syncthing.nix new file mode 100644 index 0000000..02123a9 --- /dev/null +++ b/users/fcuny/desktop/syncthing.nix @@ -0,0 +1,7 @@ +{ ... }: + +{ + services.syncthing = { + enable = true; + }; +} |