-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
55 lines (47 loc) · 880 Bytes
/
home.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
{pkgs, ... }:
{
home.username = "nikhil";
home.homeDirectory = "/home/nikhil";
home.stateVersion = "24.05";
fonts.fontconfig.enable = true;
programs.emacs.enable = true;
home.packages = with pkgs;[
helix
mpv
gh
nil
nh
python3
python312Packages.python-lsp-server
yt-dlp
fastfetch
ranger
gcc
clang-tools
unzip
tmux
kitty
fzf
bat
ripgrep
fd
eza
colloid-icon-theme
wl-clipboard
nerd-fonts.jetbrains-mono
poppins
nerd-fonts.fira-code
afterglow-cursors-recolored
# (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" "FiraCode" ]; })
];
services.redshift = {
enable = false;
latitude = 23.25;
longitude = 77.41;
};
home.sessionVariables = {
# EDITOR = "emacs";
FLAKE = "/home/nikhil/.nixfiles";
};
programs.home-manager.enable = true;
}