petersweb-infra/nixos/system/home/root.nix
2024-11-15 23:41:12 -09:00

17 lines
268 B
Nix

{
config,
pkgs,
username,
nix-index-database,
lib,
...
}: let
shared = import ./shared.nix {
inherit config pkgs username nix-index-database lib;
homeDirectory = "/root";
};
in {
imports = [shared];
home.sessionVariables.EDITOR = "vim";
}