-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
65 lines (60 loc) · 1.01 KB
/
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
56
57
58
59
60
61
62
63
64
65
{ config, pkgs, ... }:
{
programs.home-manager.enable = true;
home = {
username = "gilberto";
homeDirectory = "/home/gilberto";
packages = with pkgs; [
kitty
bat
exa
xdg-user-dirs
gtop
neofetch
lxappearance
imwheel
simplescreenrecorder
materia-theme
papirus-icon-theme
libsForQt5.qtstyleplugin-kvantum
emacs
libreoffice
sxiv
unrar
unzip
zip
p7zip
bitwarden
evince
mpv
gnome.file-roller
pantheon.elementary-calendar
discord
slack
teams
ripgrep
fd
vscode
rofi
nitrogen
gnumake
];
stateVersion = "20.09";
};
programs = {
neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
vim-nix
];
};
gpg = {
enable = true;
};
git = {
enable = true;
userName = "Gilberto Calderón";
userEmail = "[email protected]";
};
};
}