feat: init common modules
This commit is contained in:
parent
e7d23540cd
commit
ff40dbf6d1
3 changed files with 14 additions and 6 deletions
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
./home/nushell
|
||||||
|
./home/starship
|
||||||
|
./home/git
|
||||||
|
./home/lazygit
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue