mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-03 22:09:24 +08:00
45 lines
959 B
Nix
45 lines
959 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake = {
|
|
homeModules = {
|
|
common = {
|
|
home.stateVersion = "22.11";
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.nix-index-database.hmModules.nix-index
|
|
./_1password.nix
|
|
./tmux.nix
|
|
./neovim.nix
|
|
# ./helix.nix
|
|
./ssh.nix
|
|
./starship.nix
|
|
./terminal.nix
|
|
./nix.nix
|
|
./git.nix
|
|
./direnv.nix
|
|
./zellij.nix
|
|
# ./nushell.nix
|
|
./just.nix
|
|
# ./powershell.nix
|
|
./juspay.nix
|
|
];
|
|
};
|
|
common-linux = {
|
|
imports = [
|
|
self.homeModules.common
|
|
./bash.nix
|
|
./vscode-server.nix
|
|
];
|
|
};
|
|
common-darwin = {
|
|
imports = [
|
|
self.homeModules.common
|
|
./zsh.nix
|
|
# ./bash.nix
|
|
# ./kitty.nix
|
|
./himalaya.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|