host<name>/default.nix -> host/<name>/main.nix

add _file in all modules
This commit is contained in:
Gerg-L 2023-07-26 12:32:10 -04:00
parent bcea731103
commit 14726d5c6d
33 changed files with 36 additions and 0 deletions

View file

@ -35,4 +35,5 @@
};
};
};
_file = ./disko.nix;
}

View file

@ -1,4 +1,5 @@
_: {
lib,
pkgs,
config,
...
@ -58,6 +59,7 @@ _: {
};
};
};
services.openssh.settings.PermitRootLogin = lib.mkForce "prohibit-password";
boot = {
initrd.availableKernelModules = ["xhci-pci" "ehci-pci" "ahci" "usbhid" "sd_mod" "sr_mod" "rtsx_usb_sdmmc"];
kernelModules = ["kvm-intel"];
@ -82,4 +84,5 @@ _: {
size = 8 * 1024;
}
];
_file = ./main.nix;
}

View file

@ -17,4 +17,5 @@ _: {pkgs, ...}: {
drivers = [pkgs.hplipWithPlugin];
};
};
_file = ./printing.nix;
}