blob: a9ef38dacca5d6f37a197742db6ee3c2cc26b4b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
config,
pkgs,
username,
...
}: {
imports = [
];
hjem.users.${username} = {
directory = "/Users/${username}";
files = {
".config/ghostty/config.ghostty".source = ./dotfiles/ghostty/config.ghostty;
".config/git/config".source = ./dotfiles/git/config;
"Library/Application Support/lazygit/config.yml".source = ./dotfiles/lazygit/config.yml;
".config/tealdeer/config.toml".source = ./dotfiles/tealdeer/config.toml;
};
packages = with pkgs; [
delta
];
};
}
|