diff options
Diffstat (limited to 'macos.local/.flake/system/core.nix.org')
-rw-r--r-- | macos.local/.flake/system/core.nix.org | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/macos.local/.flake/system/core.nix.org b/macos.local/.flake/system/core.nix.org index 2cd455a..3f942a3 100644 --- a/macos.local/.flake/system/core.nix.org +++ b/macos.local/.flake/system/core.nix.org @@ -5,15 +5,21 @@ This file imports various system configuration components in addition to enablin #+begin_src nix { config, pkgs, ... }: - { + let + inherit (pkgs) aspellWithDicts; + + myaspell = aspellWithDicts (d: [d.en d.en-computers d.en-science]); + in { + nixpkgs.config.allowUnfree = true; + imports = [ ./skhd.nix ./yabai.nix ]; environment.systemPackages = with pkgs; [ - emacs-macport gnupg + myaspell neovim skhd ]; |