Files
nixos/hosts/default/home.nix
2024-06-16 23:12:38 +00:00

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";
}