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.

33 lines
766 B

2 years ago
2 years ago
2 years ago
  1. { config, pkgs, ... }:
  2. {
  3. time.timeZone = "US/Eastern";
  4. i18n.defaultLocale = "en_US.UTF-8";
  5. console = {
  6. font = "Lat2-Terminus16";
  7. keyMap = "us";
  8. };
  9. nix = {
  10. package = pkgs.nixFlakes; # or versioned attributes like nix_2_7
  11. extraOptions = ''
  12. experimental-features = nix-command flakes
  13. '';
  14. };
  15. programs.gnupg.agent = {
  16. enable = true;
  17. enableSSHSupport = true;
  18. };
  19. # List services that you want to enable:
  20. # Enable the OpenSSH daemon.
  21. services.openssh.enable = true;
  22. # Open ports in the firewall.
  23. # networking.firewall.allowedTCPPorts = [ ... ];
  24. # networking.firewall.allowedUDPPorts = [ ... ];
  25. # Or disable the firewall altogether.
  26. networking.firewall.enable = false;
  27. system.stateVersion = "22.05";
  28. }