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.

53 lines
1.5 KiB

3 years ago
3 years ago
  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, inputs, ... }:
  3. {
  4. time.timeZone = "America/Toronto";
  5. networking.hostName = "acernitro";
  6. networking.firewall.enable = false;
  7. networking.wireless.enable = true;
  8. networking.wireless.userControlled.enable = true;
  9. networking.useDHCP = false;
  10. networking.interfaces.enp6s0f1.useDHCP = true;
  11. networking.interfaces.wlp0s20f3.useDHCP = true;
  12. networking.wireless.networks = {
  13. MyWiFi_5C1870 = {
  14. priority = 1;
  15. pskRaw = "409b3c85fef1c5737f284d2f82f20dc6023e41804e862d4fa26265ef8193b326";
  16. };
  17. BELL182 = {
  18. priority = 2;
  19. pskRaw = "8b3c114c695c5013bbcf5fc0af781c7872f95c34e2cceb31afa7bfc1adf66245";
  20. };
  21. SM-G975W3034 = {
  22. priority = 3;
  23. pskRaw = "74835d96a98ca2c56ffe4eaf92223f8a555168b59ec2bb22b1e46b2a333adc80";
  24. };
  25. };
  26. networking.hosts = {
  27. "192.168.3.105" = [ "gamingpc" ];
  28. "192.168.3.163" = [ "acernitro" ];
  29. "192.168.3.182" = [ "raspberry" ];
  30. "192.168.3.183" = [ "homecloud" ];
  31. };
  32. users.users.chris.openssh.authorizedKeys.keys = [
  33. "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4wka/LfG3pto15DIm9LIRbb6rWr7/ipCRiCdAKSlY4 chris@chrishayward.xyz"
  34. ];
  35. services.tlp.enable = true;
  36. services.xserver.dpi = 96;
  37. services.xserver.libinput.touchpad.tapping = false;
  38. services.printing.enable = true;
  39. programs.mtr.enable = true;
  40. programs.fish.enable = true;
  41. programs.gnupg.agent.enable = true;
  42. users.users.chris = {
  43. shell = pkgs.fish;
  44. isNormalUser = true;
  45. extraGroups = [ "wheel" ];
  46. };
  47. }