nixos-config/home/default.nix
Sridhar Ratnakumar 8577e94548 fucking nu
2023-10-06 12:56:06 -04:00

38 lines
728 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
];
};
};
};
}