blob: f26841374bde96bf5c6b40b2663088816b756f9e (
plain)
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
|
{
config,
lib,
pkgs,
...
}:
{
imports = [
./neovim.nix
./fuzzel.nix
./ssh.nix
./ayu.nix
./git.nix
./ghostty.nix
./theme.nix
./firefox.nix
./cursor.nix
./sway.nix
./waybar.nix
./scripts
];
home.sessionVariables = {
"TEST_VAR" = "asdf";
};
home.packages = with pkgs; [
btop
wget
tree
nerd-fonts.blex-mono
ripgrep
curl
bat
lsd
yazi
claude-code
tldr
curl
_1password-gui
opencode
spotify
prismlauncher
];
programs.fzf = {
enable = true;
enableBashIntegration = true;
};
services.syncthing.enable = true;
programs.bash.enable = true;
programs.direnv = {
enable = true;
enableBashIntegration = true;
};
home.stateVersion = "25.05";
}
|