nixos-config/home/default.nix
2024-01-16 16:37:13 +05:30

39 lines
750 B
Nix

{ self, ... }:
{
flake = {
homeModules = {
common = {
home.stateVersion = "22.11";
imports = [
./tmux.nix
./neovim.nix
./helix.nix
./starship.nix
./terminal.nix
./git.nix
./direnv.nix
./zellij.nix
# ./nushell.nix
./just.nix
# ./powershell.nix
];
};
common-linux = {
imports = [
self.homeModules.common
./bash.nix
./vscode-server.nix
];
};
common-darwin = {
imports = [
self.homeModules.common
./zsh.nix
./bash.nix
# ./kitty.nix
# ./emacs.nix
];
};
};
};
}