default.nix 734 B

12345678910111213141516171819202122232425262728293031
  1. { outputs, ... }:
  2. {
  3. imports = [
  4. ./hardware.nix
  5. outputs.modules.global.gnupg
  6. outputs.modules.global.locale
  7. outputs.modules.global.fish
  8. outputs.modules.global.nix-config
  9. outputs.modules.global.openssh
  10. outputs.modules.global.users.thomas
  11. # ../common/users/thomas
  12. # ../common/users/thomas/authorized_keys.nix
  13. # ../common/users/thomas/groups.nix
  14. # ../common/users/thomas/nixos.nix
  15. ];
  16. security.sudo.extraConfig = ''
  17. # rollback results in sudo lectures after each reboot
  18. Defaults lecture = never
  19. '';
  20. documentation.enable = false;
  21. documentation.man.enable = false;
  22. networking.hostName = "modgud";
  23. time.timeZone = "Europe/Amsterdam";
  24. system.stateVersion = "25.05";
  25. }