nixos-config/home/default.nix
Sridhar Ratnakumar 8dcb0ac141 disable unused
2023-07-22 11:33:37 -04:00

37 lines
705 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
# ./powershell.nix
];
};
common-linux = {
imports = [
self.homeModules.common
./bash.nix
./vscode-server.nix
];
};
common-darwin = {
imports = [
self.homeModules.common
./zsh.nix
./bash.nix
# ./emacs.nix
# ./kitty.nix
];
};
};
};
}