blob: aa5ed9dcf058c8936533a5c99de5645d94561123 (
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
28
29
30
31
32
33
|
#+title: Core Program Configuration
Import configurations for programs and install programs with no configuration.
#+begin_src nix
{ 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
gopls
python312
python312Packages.black
python312Packages.pylint
python312Packages.python-lsp-server
texliveFull
];
}
#+end_src
|