nixos-config/.hm-modules/home-manager.nix
2023-02-11 15:30:09 -05:00

20 lines
No EOL
397 B
Nix

{ config, pkgs, lib, ... }:
{
# https://github.com/arouzing/nix/blob/main/hm/sky/home.nix
home = {
username = "speccon18";
homeDirectory = "/home/speccon18";
stateVersion = "22.11";
};
direnv = {
enableZshIntegration = true;
enable = true;
};
starship = {
enable = true;
enableZshIntegration = true;
};
zsh = {
enable = true;
};
}