nixos-config/home/default.nix
Sridhar Ratnakumar c2e5d534e4 enable emacs
2023-06-09 13:05:22 -04:00

36 lines
678 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
./kitty.nix
./emacs.nix
];
};
};
};
}