8 lines
205 B
Nix
8 lines
205 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
# Config common to all hosts, which don't belong anywhere else
|
||
|
{
|
||
|
config = {
|
||
|
home-manager.users.root = import ../home-manager/root.nix { inherit config lib pkgs; };
|
||
|
};
|
||
|
}
|