about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-21 13:36:58 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-21 13:36:58 -0800
commit0221c50c38c44f4039465844c479cfc89a64c5e8 (patch)
tree28d29fda17b963a19f1c99ee819e8901a5cadef7
parentterminal: live reload of alacritty's configuration (diff)
downloadworld-0221c50c38c44f4039465844c479cfc89a64c5e8.tar.gz
emacs: add aspell and dictionaries
-rw-r--r--users/fcuny/desktop/emacs.nix4
-rw-r--r--users/fcuny/desktop/syncthing.nix7
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;
+  };
+}