mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: custom configs for yoshino
This commit is contained in:
parent
6c8e181166
commit
4dedd8095d
2 changed files with 20 additions and 0 deletions
|
|
@ -11,6 +11,8 @@
|
||||||
[ ./../home/default.desktop.nix ]
|
[ ./../home/default.desktop.nix ]
|
||||||
else if (host == "violet") then
|
else if (host == "violet") then
|
||||||
[ ./../home/default.violet.nix ]
|
[ ./../home/default.violet.nix ]
|
||||||
|
else if (host == "yoshino") then
|
||||||
|
[ ./../home/default.yoshino.nix ]
|
||||||
else [ ./../home ];
|
else [ ./../home ];
|
||||||
home = {
|
home = {
|
||||||
username = "${username}";
|
username = "${username}";
|
||||||
|
|
|
||||||
18
modules/home/default.yoshino.nix
Normal file
18
modules/home/default.yoshino.nix
Normal file
|
|
@ -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
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue