nix/user/home/Root.nix

10 lines
134 B
Nix
Raw Normal View History

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