refactor: extract home configs

main
mandlm 2024-07-10 13:09:24 +02:00
parent 55af25ccb3
commit f6f01771ab
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
3 changed files with 39 additions and 38 deletions

View File

@ -20,7 +20,7 @@
inherit pkgs; inherit pkgs;
modules = [ modules = [
./private/home.nix ./private.nix
./xps.nix ./xps.nix
]; ];
@ -37,7 +37,7 @@
inherit pkgs; inherit pkgs;
modules = [ modules = [
./horsch/home.nix ./horsch.nix
]; ];
extraSpecialArgs = { extraSpecialArgs = {

View File

@ -18,24 +18,25 @@
]; ];
imports = [ imports = [
../bat.nix ./bat.nix
../carapace.nix ./carapace.nix
../direnv.nix ./direnv.nix
../eza.nix ./eza.nix
../fzf.nix ./fzf.nix
../git.nix ./git.nix
../gpg ./gpg
../neovim ./neovim
../picocom.nix ./picocom.nix
../podman.nix ./podman.nix
../ripgrep.nix ./ripgrep.nix
../rsync.nix ./rsync.nix
../shell_aliases.nix ./shell_aliases.nix
../starship.nix ./starship.nix
../tree.nix ./tree.nix
../zoxide.nix ./zoxide.nix
../zsh.nix
./ssh.nix
./zsh.nix ./zsh.nix
./horsch/ssh.nix
./horsch/zsh.nix
]; ];
} }

View File

@ -54,23 +54,23 @@
programs.home-manager.enable = true; programs.home-manager.enable = true;
imports = [ imports = [
../bat.nix ./bat.nix
../carapace.nix ./carapace.nix
../direnv.nix ./direnv.nix
../eza.nix ./eza.nix
../firefox.nix ./firefox.nix
../fzf.nix ./fzf.nix
../git.nix ./git.nix
../gpg ./gpg
../kitty.nix ./kitty.nix
../neovim ./neovim
../nextcloud.nix ./nextcloud.nix
../ripgrep.nix ./ripgrep.nix
../shell_aliases.nix ./shell_aliases.nix
../starship.nix ./starship.nix
../sway ./sway
../tree.nix ./tree.nix
../zoxide.nix ./zoxide.nix
../zsh.nix ./zsh.nix
]; ];
} }