nixos/modules/home/chn.nix
2023-07-10 10:49:07 +08:00

12 lines
166 B
Nix

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