dotfiles/macos.local/.flake/home/programs/core.nix.org
2024-10-07 18:55:30 -05:00

651 B

Core Program Configuration

  { config, pkgs, ... }:

  {
    imports = [
      ./emacs/core.nix
      ./fastfetch.nix
      ./git.nix
      ./neovim.nix
      ./zsh.nix
    ];

    home.packages = with pkgs; [
      aspell
      bash-language-server
      inetutils
      clang-tools
      cmake
      cmake-language-server
      eza
      gcc-arm-embedded
      htop
      hyfetch
      marksman
      mpv
      openocd
      pinentry_mac
      python312
      python312Packages.black
      python312Packages.pylint
      python312Packages.python-lsp-server
      sqlite
      texliveFull
      yt-dlp
    ];
  }