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 = {
imports = [
hyprland.homeManagerModules.default
./modules/home/home.nix
./hosts/tsuki/home.nix
];
};
}
@ -40,6 +40,15 @@
inherit system;
modules = [
./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 = [
./gtk
./wezterm
./zathura
./nushell
./starship
./dunst
./helix
./git
./lazygit
./lf
./mpv
./waybar
./wayland/hyprland
../../modules/home/gtk
../../modules/home/wezterm
../../modules/home/zathura
../../modules/home/nushell
../../modules/home/starship
../../modules/home/dunst
../../modules/home/helix
../../modules/home/git
../../modules/home/lazygit
../../modules/home/lf
../../modules/home/mpv
../../modules/home/waybar
../../modules/home/wayland/hyprland
];
systemd.user.startServices = "sd-switch";