-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
49 lines (40 loc) · 1.12 KB
/
home.nix
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
{ config, pkgs, lib, ... }:
{
home.username = "tanish";
home.homeDirectory = lib.mkForce "/Users/tanish"; # Ensure this value is enforced
home.stateVersion = "23.05"; # Adjust if necessary
home.file.".config/starship.toml" = {
source = ./dotfiles/.config/starship.toml;
};
home.file.".zshrc" = {
source = ./dotfiles/.zshrc;
};
home.file.".tmux.conf" = {
source = ./dotfiles/.tmux.conf;
};
home.file.".config/fastfetch" = {
source = ./dotfiles/.config/fastfetch;
recursive = true;
};
home.file.".config/aerospace" = {
source = ./dotfiles/.config/aerospace;
recursive = true;
};
home.file.".config/wezterm" = {
source = ./dotfiles/.config/wezterm;
recursive = true;
};
# Makes sense for user-specific applications that shouldn't be available system-wide
home.packages = [
pkgs.hello
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.sessionVariables = {
};
home.sessionPath = [
"/run/current-system/sw/bin"
"$HOME/.nix-profile/bin"
];
programs.home-manager.enable = true;
}