diff options
Diffstat (limited to '')
-rw-r--r-- | modules/nixfiles/aspell.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/nixfiles/aspell.nix b/modules/nixfiles/aspell.nix deleted file mode 100644 index f397944..0000000 --- a/modules/nixfiles/aspell.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: -with lib; let - cfg = config.nixfiles.modules.aspell; -in { - options.nixfiles.modules.aspell.enable = - mkEnableOption "GNU Aspell"; - - config = mkIf cfg.enable { - hm.home = { - file.".aspell.conf".text = '' - personal /dev/null - repl /dev/null - ''; - - packages = with pkgs; [(aspellWithDicts (p: with p; [en ru]))]; - }; - }; -} |