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.

25 lines
520 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, ... }:
  3. {
  4. networking.hostName = "raspberry";
  5. networking.firewall.enable = false;
  6. networking.wireless.enable = true;
  7. networking.wireless.userControlled.enable = true;
  8. environment.systemPackages = [
  9. pkgs.libraspberrypi
  10. pkgs.raspberrypi-eeprom
  11. ];
  12. programs.fish.enable = true;
  13. programs.gnupg.agent.enable = true;
  14. users.users.chris = {
  15. shell = pkgs.fish;
  16. isnormaluser = true;
  17. extragroups = [ "wheel" ];
  18. };
  19. }