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.

35 lines
454 B

2 weeks ago
  1. { lib, ... }:
  2. with lib;
  3. {
  4. imports = [
  5. ./hardware.nix
  6. ./gpu.nix
  7. ./home.nix
  8. ./users.nix
  9. ./desktop.nix
  10. ./programs.nix
  11. ];
  12. deployment = {
  13. targetHost = "10.32.45.150";
  14. };
  15. networking = {
  16. useDHCP = mkForce true;
  17. };
  18. services.hardware.bolt.enable = true;
  19. security.rtkit.enable = true;
  20. services.avahi = {
  21. enable = true;
  22. nssmdns4 = true;
  23. nssmdns6 = true;
  24. };
  25. system.stateVersion = "24.05";
  26. }