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.

21 lines
483 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, inputs, ... }:
  3. {
  4. time.timeZone = "America/Toronto";
  5. networking.hostName = "nixos";
  6. networking.useDHCP = false;
  7. networking.firewall.enable = false;
  8. networking.interfaces.ens3.useDHCP = true;
  9. programs.mtr.enable = true;
  10. programs.fish.enable = true;
  11. programs.gnupg.agent.enable = true;
  12. users.users.chris = {
  13. shell = pkgs.fish;
  14. isNormalUser = true;
  15. extraGroups = [ "wheel" ];
  16. };
  17. }