nix/user/home/Root.nix

13 lines
216 B
Nix

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