dotfiles/macos.local/.flake/home/programs/core.nix.org
2025-01-14 21:13:45 -06:00

1 KiB

Core Program Configuration

Import configurations for programs and install programs with no configuration.

  { config, pkgs, ... }:

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

    home.packages = with pkgs; [
      aescrypt
      bash-language-server
      bear
      binutils
      bison
      cmake
      cmake-language-server
      curl
      dos2unix
      eza
      ffmpeg
      gnutls
      fzf
      go
      gopls
      gpgme
      htop
      inetutils
      lesspipe
      marksman
      mailutils
      meson
      mpv
      ninja
      pandoc
      python312
      python312Packages.black
      python312Packages.pylint
      python312Packages.python-lsp-server
      rsync
      rustup
      shellcheck
      shfmt
      texliveFull
      typescript-language-server
      vscode-langservers-extracted
      wget
      yt-dlp
    ];
  }