547 B
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
];
}