nix/user/home/Root.nix

11 lines
162 B
Nix
Raw Normal View History

2024-04-02 22:54:00 +03:00
{ const, color, ... }: {
imports = [
(import ./Default.nix {
2024-04-02 22:54:00 +03:00
color = color;
const = const;
username = "root";
homeDir = "/root";
})
];
}