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 = {
|
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
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 = [
|
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";
|
Loading…
Reference in a new issue