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.

30 lines
436 B

2 weeks ago
1 week ago
2 weeks ago
1 week ago
2 weeks ago
1 week ago
2 weeks ago
1 week ago
2 weeks ago
1 week ago
2 weeks ago
  1. {
  2. imports = [
  3. ./hardware.nix
  4. ./ldap.nix
  5. # TODO:
  6. # ../installer/netinstall.nix
  7. ];
  8. deployment = {
  9. targetHost = "10.33.64.19";
  10. };
  11. networking = {
  12. interfaces."eno1" = {
  13. ipv4.addresses = [{
  14. address = "10.33.64.19";
  15. prefixLength = 20;
  16. }];
  17. };
  18. defaultGateway = {
  19. interface = "eno1";
  20. address = "10.33.64.1";
  21. };
  22. };
  23. system.stateVersion = "24.05";
  24. }