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
590 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.device = "/dev/sda";
  7. time.timeZone = "America/Toronto";
  8. networking.hostName = "nixos";
  9. networking.useDHCP = false;
  10. networking.firewall.enable = false;
  11. networking.interfaces.ens3.useDHCP = true;
  12. programs.mtr.enable = true;
  13. programs.fish.enable = true;
  14. programs.gnupg.agent.enable = true;
  15. users.users.chris = {
  16. shell = pkgs.fish;
  17. isNormalUser = true;
  18. extraGroups = [ "wheel" ];
  19. };
  20. }