nix/user/home/Root.nix

11 lines
162 B
Nix

{ const, color, ... }: {
imports = [
(import ./Default.nix {
color = color;
const = const;
username = "root";
homeDir = "/root";
})
];
}