nixos/modules/home/chn.nix

14 lines
245 B
Nix
Raw Normal View History

2023-06-24 23:00:02 +08:00
inputs:
2023-06-09 21:23:19 +08:00
{
2023-06-15 19:12:25 +08:00
config =
2023-06-09 21:23:19 +08:00
{
2023-06-15 19:12:25 +08:00
home-manager.users.chn = { pkgs, ... }:
{
home.stateVersion = "22.11";
2023-07-10 10:48:41 +08:00
programs.zsh = import ./zsh.nix { inherit pkgs; };
2023-07-10 20:11:17 +08:00
programs.direnv.enable = true;
programs.direnv.nix-direnv.enable = true;
2023-06-15 19:12:25 +08:00
};
2023-06-09 21:23:19 +08:00
};
}