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.

20 lines
284 B

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