nix/host/fsight/default.nix

14 lines
168 B
Nix
Raw Normal View History

2024-03-29 09:05:08 +03:00
{ ... }: {
imports = [
./Grub.nix
./Root.nix
];
2024-06-25 04:04:39 +03:00
home.nixos.enable = true;
module.docker = {
enable = true;
autostart = true;
rootless = false;
};
}