snowflake/modules/home/home.nix
2023-02-04 12:38:36 -05:00

28 lines
No EOL
363 B
Nix
Executable file

{config, pkgs, ...}:
{
imports = [
./gtk
./wezterm
./zathura
./nushell
./starship
./dunst
./helix
./git
./lazygit
./lf
./waybar
./wayland/hyprland
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "notoh";
homeDirectory = "/home/notoh";
stateVersion = "23.05";
};
}