dotfiles/macos.local/.flake/home/programs/core.nix.org
2025-01-14 20:32:39 -06:00

547 B

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; [
      gopls
      python312
      python312Packages.black
      python312Packages.pylint
      python312Packages.python-lsp-server
      texliveFull
    ];
  }