aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.flake/home/programs/core.nix.org
blob: 5aa88971b5d9c34bd2977f5923e4a3622597d965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#+title:  Core Program Configuration

Import configurations for programs and install programs with no configuration.
#+begin_src nix
  { config, pkgs, ... }:

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

    home.packages = with pkgs; [
      python312
      python312Packages.black
      python312Packages.pylint
      python312Packages.python-lsp-server
      texliveFull
    ];
  }
#+end_src