I showed you my source code, pls respond
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.

37 lines
1023 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, inputs, ... }:
  3. {
  4. time.timeZone = "America/Toronto";
  5. networking.hostName = "nixos";
  6. networking.useDHCP = false;
  7. networking.firewall.enable = false;
  8. networking.interfaces.ens3.useDHCP = true;
  9. networking.hosts = {
  10. "192.168.3.105" = [ "gamingpc" ];
  11. "192.168.3.136" = [ "acernitro" ];
  12. "192.168.3.163" = [ "acernitro_" ];
  13. "192.168.3.182" = [ "raspberry" ];
  14. "192.168.3.123" = [ "raspberry_" ];
  15. "192.168.3.183" = [ "homecloud" ];
  16. # "" = [ "homecloud_" ];
  17. # "" = [ "zero-one" ];
  18. # "" = [ "zero-two" ];
  19. # "" = [ "android" ];
  20. };
  21. users.users.chris.openssh.authorizedKeys.keys = [
  22. "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4wka/LfG3pto15DIm9LIRbb6rWr7/ipCRiCdAKSlY4 chris@chrishayward.xyz"
  23. ];
  24. programs.mtr.enable = true;
  25. programs.fish.enable = true;
  26. programs.gnupg.agent.enable = true;
  27. users.users.chris = {
  28. shell = pkgs.fish;
  29. isNormalUser = true;
  30. extraGroups = [ "wheel" ];
  31. };
  32. }