init hm for hime
This commit is contained in:
parent
acbd23a60b
commit
7e712c1fec
3 changed files with 48 additions and 14 deletions
11
flake.nix
11
flake.nix
|
@ -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
25
hosts/hime/home.nix
Normal 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";
|
||||
};
|
||||
|
||||
}
|
|
@ -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";
|
Loading…
Reference in a new issue