22 lines
326 B
Nix
22 lines
326 B
Nix
{ lib, config, ... }:
|
|
{
|
|
imports = [
|
|
./zsh.nix
|
|
./neovim
|
|
./rust.nix
|
|
./nodejs.nix
|
|
./git
|
|
./solidity.nix
|
|
./dev.nix
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
};
|
|
|
|
home = {
|
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
|
sessionPath = [ "$HOME/.local/bin" ];
|
|
};
|
|
}
|