24 lines
377 B
Nix
24 lines
377 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = [
|
|
../../modules/home
|
|
];
|
|
|
|
home = {
|
|
username = "eesim";
|
|
# homeDirectory = "/home/eesim";
|
|
};
|
|
|
|
home.file.".config/nvim".source = ../shared/dotfiles/nvim;
|
|
home.file.".tmux.conf".source = ../shared/dotfiles/tmux;
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|