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.

39 lines
989 B

3 years ago
3 years ago
  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, ... }:
  3. {
  4. time.timeZone = "America/Toronto";
  5. networking.hostName = "raspberry";
  6. networking.firewall.enable = false;
  7. networking.networkmanager.enable = true;
  8. networking.interfaces.eth0.useDHCP = true;
  9. networking.interfaces.wlan0.useDHCP = true;
  10. networking.hosts = {
  11. "192.168.3.105" = [ "gamingpc" ];
  12. "192.168.3.136" = [ "acernitro" ];
  13. "192.168.3.163" = [ "acernitro_" ];
  14. "192.168.3.182" = [ "raspberry" ];
  15. "192.168.3.123" = [ "raspberry_" ];
  16. "192.168.3.183" = [ "homecloud" ];
  17. # "" = [ "homecloud_" ];
  18. # "" = [ "zero-one" ];
  19. # "" = [ "zero-two" ];
  20. # "" = [ "android" ];
  21. };
  22. environment.systemPackages = [
  23. pkgs.libraspberrypi
  24. pkgs.raspberrypi-eeprom
  25. ];
  26. programs.fish.enable = true;
  27. programs.gnupg.agent.enable = true;
  28. users.users.chris = {
  29. shell = pkgs.fish;
  30. isNormalUser = true;
  31. extraGroups = [ "wheel" "networkmanager" ];
  32. };
  33. }