snowflake/modules/home/home.nix
2023-02-07 21:02:30 -05:00

29 lines
371 B
Nix
Executable file

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