nixos-config/home/default.nix
Sridhar Ratnakumar f26e40f7dd Switch to nixvim
resolves #38
2024-02-08 09:56:32 -05:00

40 lines
808 B
Nix

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