-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.nix
61 lines (61 loc) · 931 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
56
57
58
59
60
61
{ pkgs, ...}:
with pkgs; {
imports = [
./git.nix
./bash.nix
./i3.nix
./emacs.nix
./vim.nix
./fish.nix
./gpg.nix
./terminator.nix
];
home.packages = [
firefox
google-chrome
thefuck
peco
powerline-fonts
jetbrains.idea-ultimate
nix-index
rlwrap
discord
spotify
slack
vlc
emacs
feh
simplescreenrecorder
gimp
rawtherapee
shotwell
docker-compose
blueman
libreoffice
patchelf
autoPatchelfHook
srm
dia
fzf
gitAndTools.hub
autojump
yubioath-desktop
nix-prefetch-git
nix-prefetch-scripts
any-nix-shell
telnet
busybox
];
home.file.".nix-channels".source = ./nix-channels;
programs = {
fish = {
enable = true;
promptInit =''
any-nix-shell fish --info-right | source
'';
};
home-manager = {
enable = true;
};
};
}