-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathghost.nix
More file actions
85 lines (81 loc) · 1.76 KB
/
ghost.nix
File metadata and controls
85 lines (81 loc) · 1.76 KB
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
{
pkgs,
lib,
...
}:
{
imports = [
./modules/home
./modules/ghost/hm
];
ghost = {
dev = {
i3status.enable = true;
enhancements.enable = true;
git.enable = true;
tealdeer = {
enable = true;
package = pkgs.tealdeer;
};
nh = {
enable = true;
package = pkgs.nh;
};
packages = {
enable = true;
extraPackages =
let
inherit (pkgs)
imv
wl-clipboard
proton-pass
imagemagick
proton-authenticator
kiwix-tools
harper
;
in
[
imv
wl-clipboard
proton-pass
imagemagick
proton-authenticator
kiwix-tools
harper
];
};
scripts.enable = true;
tmux.enable = true;
terminal.enable = true;
neovim.enable = true; # just links files so let it be
zsh = {
enable = true;
plugins = [
{
name = "vi-mode";
src = pkgs.zsh-vi-mode;
file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh";
}
];
};
zed.enable = true;
};
browser = {
enable = true;
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ghostery # privacy enhancer
vimium # vim motions in the browser
proton-pass # password manager
darkreader # force dark theme
youtube-recommended-videos # unhook
sponsorblock # YouTube intro skipper
];
};
picom.enable = true;
fuzzel.enable = false;
vicinae.enable = true;
};
home.stateVersion = "25.05";
programs.home-manager.enable = true;
}