diff --git a/modules/core/user.nix b/modules/core/user.nix index 11c244d..931b456 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -11,6 +11,8 @@ [ ./../home/default.desktop.nix ] else if (host == "violet") then [ ./../home/default.violet.nix ] + else if (host == "yoshino") then + [ ./../home/default.yoshino.nix ] else [ ./../home ]; home = { username = "${username}"; diff --git a/modules/home/default.yoshino.nix b/modules/home/default.yoshino.nix new file mode 100644 index 0000000..d6a0228 --- /dev/null +++ b/modules/home/default.yoshino.nix @@ -0,0 +1,18 @@ +{ ...}: { + imports = + [(import ./git.nix)] # version control + ++ [(import ./swaync/default.nix)] # notification panel + ++ [(import ./fonts.nix)] # fonts + ++ [(import ./hyprland)] # window manager + ++ [(import ./kitty.nix)] # terminal + ++ [(import ./mako.nix)] # notification deamon + ++ [(import ./nvim.nix)] # neovim editor + ++ [(import ./zathura.nix)] # neovim editor + ++ [(import ./packages.yoshino.nix)] # other packages + ++ [(import ./scripts/scripts.nix)] # personal scripts + ++ [(import ./swaylock.nix)] # lock screen + ++ [(import ./waybar)] # status bar + ++ [(import ./wofi.nix)] # launcher + ++ [(import ./zsh.nix)] # shell + ++ [(import ./tmux.nix)]; # terminal multiplexer +}