petersweb-infra/nixos/system/home/root.nix

18 lines
268 B
Nix
Raw Permalink Normal View History

2024-11-15 22:00:01 -09:00
{
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";
}