blob: c43b9b07cb963c476edd54f59c7505853ab960d7 (
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
|
{ inputs, pkgs, ... }:
{
home = {
username = "compromyse";
homeDirectory = "/home/compromyse";
};
home.packages = with pkgs; [
tmux
fzf
fd
ripgrep
jq
unzip
zip
];
programs = {
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
bash.enable = true;
};
imports = (map (path: ../../config/${path}) [
"bash.nix"
"dotfiles.nix"
"git"
"nvim"
]);
home.stateVersion = "23.11";
}
|