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.

29 lines
760 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, inputs, ... }:
  3. {
  4. boot.loader.grub.enable = true;
  5. boot.loader.grub.version = 2;
  6. boot.loader.grub.efiSupport = true;
  7. boot.loader.grub.useOsProber = true;
  8. boot.loader.grub.device = "/dev/sda";
  9. time.timeZone = "America/Toronto";
  10. networking.hostName = "acernitro";
  11. networking.useDHCP = false;
  12. networking.firewall.enable = false;
  13. networking.interfaces.ens3.useDHCP = true;
  14. networking.wireless.enable = true;
  15. networking.wireless.userControlled.enable = true;
  16. programs.mtr.enable = true;
  17. programs.fish.enable = true;
  18. programs.gnupg.agent.enable = true;
  19. users.users.chris = {
  20. shell = pkgs.fish;
  21. isNormalUser = true;
  22. extraGroups = [ "wheel" ];
  23. };
  24. }