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