nixos/modules/home/chn.nix
2023-06-09 21:23:19 +08:00

8 lines
143 B
Nix

{
config.home-manager.users.chn = { pkgs, ... }:
{
home.stateVersion = "22.11";
programs.zsh = import ./zsh.nix { inherit pkgs; };
};
}