NixOS deployment for LinuxLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
312 B

1 week ago
  1. { name, ...}:
  2. {
  3. imports = [
  4. ./nix.nix
  5. ./network.nix
  6. ./users.nix
  7. ./system.nix
  8. ];
  9. time.timeZone = "Europe/Berlin";
  10. i18n.defaultLocale = "en_US.UTF-8";
  11. console.keyMap = "de";
  12. _module.args = {
  13. machinePath = ../machines/${name};
  14. };
  15. disko.imageBuilder.imageFormat = "qcow2";
  16. }