mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-01 20:26:34 +08:00
39 lines
750 B
Nix
39 lines
750 B
Nix
{ self, ... }:
|
|
{
|
|
flake = {
|
|
homeModules = {
|
|
common = {
|
|
home.stateVersion = "22.11";
|
|
imports = [
|
|
./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
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|