1
0

default.nix 734 B

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