18 lines
249 B
Nix
18 lines
249 B
Nix
{ inputs, config, pkgs, user, ... }: {
|
|
|
|
home = {
|
|
username = "${user}";
|
|
homeDirectory = "/home/${user}";
|
|
};
|
|
|
|
imports = [
|
|
./shared.nix
|
|
./neovim.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
nvtopPackages.full
|
|
];
|
|
}
|