snowflake/hosts/hime/home.nix

25 lines
313 B
Nix
Raw Normal View History

2023-02-27 05:39:25 -05:00
{config, pkgs, ...}:
{
imports = [
./gtk
./wezterm
./zathura
./nushell
./starship
./dunst
./helix
./git
./lf
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "oh";
homeDirectory = "/home/oh";
stateVersion = "23.05";
};
}