nixos/modules/home/root.nix

13 lines
209 B
Nix
Raw Normal View History

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