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.

31 lines
842 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.163" = [ "acernitro" ];
  12. # "192.168.3.182" = [ "raspberry" ];
  13. # "192.168.3.183" = [ "homecloud" ];
  14. };
  15. users.users.chris.openssh.authorizedKeys.keys = [
  16. "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4wka/LfG3pto15DIm9LIRbb6rWr7/ipCRiCdAKSlY4 chris@chrishayward.xyz"
  17. ];
  18. programs.mtr.enable = true;
  19. programs.fish.enable = true;
  20. programs.gnupg.agent.enable = true;
  21. users.users.chris = {
  22. shell = pkgs.fish;
  23. isNormalUser = true;
  24. extraGroups = [ "wheel" ];
  25. };
  26. }