-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshare.nix
98 lines (85 loc) · 1.54 KB
/
share.nix
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{ pkgs, lib, ... }:
let
user = "nyeong";
name = "An Nyeong";
email = "[email protected]";
# TODO: 매번 inherit user pkgs 하지 않을 방법은 없을까?
packages = [
# terminal
(import ./zsh { inherit user pkgs lib; })
(import ./zellij { inherit user pkgs; })
(import ./git { inherit user name email pkgs; })
# editor
(import ./emacs { inherit user pkgs; })
# font
(import ./sf-mono { inherit user pkgs; })
(import ./monoplex { inherit user pkgs; })
];
# home-manager로 설치할 프로그램
home-packages = with pkgs; [
# General packages for development and system management
wezterm
aspell
aspellDicts.en
bash-completion
bat
btop
bottom
lsd
coreutils
killall
neofetch
openssh
sqlite
wget
hyperfine
curl
zip
yt-dlp
tokei
zinit
# Encryption and security tools
age
age-plugin-yubikey
gnupg
libfido2
gcc
libgccjit
# Media-related packages
emacs-all-the-icons-fonts
dejavu_fonts
ffmpeg
fd
font-awesome
hack-font
noto-fonts
noto-fonts-emoji
meslo-lgs-nf
# Node.js development tools
nodePackages.npm # globally install npm
nodejs
# Text and terminal utilities
htop
hunspell
iftop
jetbrains-mono
jq
ripgrep
tree
tmux
unrar
unzip
zsh-powerlevel10k
anki-bin
python3
elixir
ruby
nil
];
in
{
imports = packages;
home-manager.users.${user}.home = {
packages = home-packages;
};
}