2023-01-30 06:09:00 -05:00
|
|
|
{config, pkgs, ...}:
|
2022-12-16 23:42:46 -05:00
|
|
|
|
2023-01-30 06:09:00 -05:00
|
|
|
{
|
2022-12-16 23:42:46 -05:00
|
|
|
|
2023-01-30 06:09:00 -05:00
|
|
|
imports = [
|
2023-01-30 11:33:18 -05:00
|
|
|
./gtk/gtk.nix
|
|
|
|
./wezterm/wezterm.nix
|
|
|
|
./zathura/zathura.nix
|
|
|
|
./nushell/nushell.nix
|
|
|
|
./starship/starship.nix
|
|
|
|
./dunst/dunst.nix
|
|
|
|
./helix/helix.nix
|
|
|
|
./git/git.nix
|
2023-01-30 06:09:00 -05:00
|
|
|
];
|
2023-01-30 08:21:33 -05:00
|
|
|
systemd.user.startServices = "sd-switch";
|
2023-01-30 06:09:00 -05:00
|
|
|
programs.home-manager.enable = true;
|
2022-12-16 23:42:46 -05:00
|
|
|
|
2023-01-30 06:09:00 -05:00
|
|
|
home = {
|
|
|
|
username = "notoh";
|
|
|
|
homeDirectory = "/home/notoh";
|
|
|
|
stateVersion = "23.05";
|
|
|
|
};
|
2022-12-16 23:42:46 -05:00
|
|
|
|
2023-01-30 06:09:00 -05:00
|
|
|
}
|