nixos/modules/home/chn.nix

8 lines
143 B
Nix
Raw Normal View History

2023-06-09 21:23:19 +08:00
{
config.home-manager.users.chn = { pkgs, ... }:
{
home.stateVersion = "22.11";
programs.zsh = import ./zsh.nix { inherit pkgs; };
};
}