mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-08 17:27:22 +08:00
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ self, inputs, config, ... }:
|
|
{
|
|
flake = {
|
|
homeModules = {
|
|
common = {
|
|
home.stateVersion = "22.11";
|
|
imports = [
|
|
./tmux.nix
|
|
./neovim.nix
|
|
./starship.nix
|
|
./terminal.nix
|
|
./direnv.nix
|
|
];
|
|
};
|
|
common-linux = {
|
|
imports = [
|
|
self.homeModules.common
|
|
./vscode-server.nix
|
|
];
|
|
programs.bash.enable = true;
|
|
};
|
|
common-darwin = {
|
|
imports = [
|
|
self.homeModules.common
|
|
./emacs.nix
|
|
];
|
|
|
|
programs.zsh.enable = true;
|
|
# This must be envExtra (rather than initExtra), because doom-emacs requires it
|
|
# https://github.com/doomemacs/doomemacs/issues/687#issuecomment-409889275
|
|
#
|
|
# But also see: 'doom env', which is what works.
|
|
programs.zsh.envExtra = ''
|
|
export PATH=/etc/profiles/per-user/$USER/bin:/run/current-system/sw/bin/:$PATH
|
|
# For 1Password CLI. This requires `pkgs.gh` to be installed.
|
|
source $HOME/.config/op/plugins.sh
|
|
# Because, adding it in .ssh/config is not enough.
|
|
# cf. https://developer.1password.com/docs/ssh/get-started#step-4-configure-your-ssh-or-git-client
|
|
export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|