hosts.nix 416 B

1234567891011121314151617181920212223
  1. let
  2. users = import ./users.nix;
  3. in
  4. {
  5. nixstation = {
  6. hostname = "nixstation";
  7. dir = "nixstation";
  8. arch = "x86_64-linux";
  9. user = users.default;
  10. };
  11. dellaptop = {
  12. hostname = "dellaptop";
  13. dir = "dellaptop";
  14. arch = "x86_64-linux";
  15. user = users.default;
  16. };
  17. ideapad = {
  18. hostname = "ideapad";
  19. dir = "ideapad";
  20. arch = "x86_64-linux";
  21. user = users.default;
  22. };
  23. }