This commit is contained in:
2025-08-14 12:33:13 +00:00
parent a397f5f13b
commit 13313035d5
47 changed files with 48 additions and 50 deletions

View File

@@ -1,24 +0,0 @@
{
imports = [
./shell/aliases.nix
./shell/fish.nix
./shell/starship.nix
./shell/zsh.nix
./tools/atuin.nix
./tools/bat.nix
./tools/eza.nix
./tools/git.nix
./tools/lazygit.nix
./tools/mise.nix
./tools/ssh.nix
./tools/zellij.nix
./tools/zoxide.nix
./editors/neovim
];
programs.home-manager.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}

View File

@@ -1,6 +0,0 @@
{
home.shellAliases = {
v = "nvim";
lg = "lazygit";
};
}

View File

@@ -1,5 +1,5 @@
{
imports = [
./terminal/ghostty.nix
./ghostty.nix
];
}

View File

@@ -0,0 +1,28 @@
{
imports = [
./fish.nix
./starship.nix
./zsh.nix
./atuin.nix
./bat.nix
./eza.nix
./git.nix
./lazygit.nix
./mise.nix
./ssh.nix
./zellij.nix
./zoxide.nix
./neovim
];
programs.home-manager.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home.shellAliases = {
v = "nvim";
lg = "lazygit";
};
}

View File

@@ -1,5 +1,5 @@
{
imports = [
./terminal/zellij.nix
./zellij.nix
];
}