diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-10-21 00:42:40 -0500 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-10-21 00:42:40 -0500 |
commit | 22e3a4ef2a3b668abb8fbc1ae0ae28b186d3b22c (patch) | |
tree | 933e3392dbfe2aed16e46a10da36d69a4c3ce29e /macos.local/.flake/system/core.nix.org | |
parent | 70af3a8d926a3a0c65ac63f62554213ab1e230be (diff) |
buncha stuff
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 ]; |