14 lines
168 B
Nix
14 lines
168 B
Nix
{ ... }: {
|
|
imports = [
|
|
./Grub.nix
|
|
./Root.nix
|
|
];
|
|
|
|
home.nixos.enable = true;
|
|
module.docker = {
|
|
enable = true;
|
|
autostart = true;
|
|
rootless = false;
|
|
};
|
|
}
|