init hm for hime

This commit is contained in:
notohh 2023-02-27 05:39:25 -05:00
parent acbd23a60b
commit 7e712c1fec
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 48 additions and 14 deletions

View file

@ -30,7 +30,7 @@
home-manager.users.notoh = { home-manager.users.notoh = {
imports = [ imports = [
hyprland.homeManagerModules.default hyprland.homeManagerModules.default
./modules/home/home.nix ./hosts/tsuki/home.nix
]; ];
}; };
} }
@ -40,6 +40,15 @@
inherit system; inherit system;
modules = [ modules = [
./hosts/hime ./hosts/hime
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.oh = {
imports = [
./hosts/hime/home.nix
];
};
}
]; ];
}; };
}; };

25
hosts/hime/home.nix Normal file
View file

@ -0,0 +1,25 @@
{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";
};
}

View file

@ -3,19 +3,19 @@
{ {
imports = [ imports = [
./gtk ../../modules/home/gtk
./wezterm ../../modules/home/wezterm
./zathura ../../modules/home/zathura
./nushell ../../modules/home/nushell
./starship ../../modules/home/starship
./dunst ../../modules/home/dunst
./helix ../../modules/home/helix
./git ../../modules/home/git
./lazygit ../../modules/home/lazygit
./lf ../../modules/home/lf
./mpv ../../modules/home/mpv
./waybar ../../modules/home/waybar
./wayland/hyprland ../../modules/home/wayland/hyprland
]; ];
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";