blob: 13b26aba6297ae9f20d85f1e1170c70005463a66 (
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
|
{
config,
pkgs,
...
}: let
develPackages =
if config.seth.devel.enable
then
with pkgs; [
alejandra
clang
deadnix
eclint
statix
]
else [];
in {
imports = [
./git.nix
./mangohud
./neovim
./starship.nix
./vim.nix
./xdg.nix
];
home.packages = with pkgs;
[
bat
discord
exa
fd
gh
lld
rclone
restic
ripgrep
steam
python311
]
++ develPackages;
}
|