blob: 960275819b4009289390c867fc90c513e23b905a (
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
34
35
36
37
38
39
40
41
42
|
#+title: Core Program Configuration
#+begin_src nix
{ config, pkgs, ... }:
{
imports = [
./alacritty.nix
./emacs/core.nix
./fastfetch.nix
./git.nix
./neovim.nix
./zsh.nix
];
home.packages = with pkgs; [
bash-language-server
choose-gui
clang-tools
cmake
cmake-language-server
eza
gcc-arm-embedded
htop
hyfetch
inetutils
ispell
marksman
mpv
ninja
openocd
pinentry_mac
python312
python312Packages.black
python312Packages.pylint
python312Packages.python-lsp-server
sqlite
texliveFull
yt-dlp
];
}
#+end_src
|