nix-infra/users/root/home.nix
2024-05-04 12:03:59 +02:00

10 lines
211 B
Nix

{ flake, ... }: {
imports = (builtins.attrValues flake.homeManagerModules);
home.stateVersion = "23.11"; # Please read the comment before changing.
home.sessionVariables = {
EDITOR = "nvim";
};
}