blob: 353a724256b517d5247b785e1e9e575341b5c0af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
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;
};
packages = with pkgs; [
delta
];
};
}
|