nixos/modules/home/default.nix
Jake Hillion 562ed2f53f
All checks were successful
continuous-integration/drone/push Build is passing
zsh: fix history and empty .zshrc
2023-06-04 15:57:27 +01:00

27 lines
484 B
Nix

{ pkgs, lib, config, ... }:
{
imports = [
./git.nix
./tmux/default.nix
];
config = {
home-manager = {
users.root.home = {
stateVersion = "22.11";
## Set an empty ZSH config and defer to the global one
file.".zshrc".text = "";
};
users."${config.custom.user}".home = {
stateVersion = "22.11";
## Set an empty ZSH config and defer to the global one
file.".zshrc".text = "";
};
};
};
}