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.

27 lines
386 B

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