nixos-config/home/default.nix
2023-08-25 11:16:43 -04:00

38 lines
726 B
Nix

{ self, ... }:
{
flake = {
homeModules = {
common = {
home.stateVersion = "22.11";
imports = [
./tmux.nix
./neovim.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
];
};
};
};
}