feat: init common modules

This commit is contained in:
notohh 2023-02-27 05:46:22 -05:00
parent e7d23540cd
commit ff40dbf6d1
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 14 additions and 6 deletions

View file

@ -3,7 +3,7 @@
{ {
imports = [ imports = [
../../modules/common.nix
]; ];
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true; programs.home-manager.enable = true;

View file

@ -3,15 +3,12 @@
{ {
imports = [ imports = [
../../modules/home/gtk ../../modules/common.nix
../../modules/home/wezterm ../../modules/home/wezterm
../../modules/home/zathura ../../modules/home/zathura
../../modules/home/nushell ../../modules/home/gtk
../../modules/home/starship
../../modules/home/dunst ../../modules/home/dunst
../../modules/home/helix ../../modules/home/helix
../../modules/home/git
../../modules/home/lazygit
../../modules/home/lf ../../modules/home/lf
../../modules/home/mpv ../../modules/home/mpv
../../modules/home/waybar ../../modules/home/waybar

View file

@ -0,0 +1,11 @@
{
pkgs,
...
}: {
imports = [
./home/nushell
./home/starship
./home/git
./home/lazygit
];
}