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.

34 lines
823 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. # "" = [ "acernitro" ];
  12. # "" = [ "acernitro_" ];
  13. "192.168.3.182" = [ "raspberry" ];
  14. "192.168.3.123" = [ "raspberry_" ];
  15. # "" = [ "homecloud" ];
  16. # "" = [ "homecloud_" ];
  17. # "" = [ "zero-one" ];
  18. # "" = [ "zero-two" ];
  19. # "" = [ "android" ];
  20. };
  21. programs.mtr.enable = true;
  22. programs.fish.enable = true;
  23. programs.gnupg.agent.enable = true;
  24. users.users.chris = {
  25. shell = pkgs.fish;
  26. isNormalUser = true;
  27. extraGroups = [ "wheel" ];
  28. };
  29. }