1
0

default.nix 693 B

1234567891011121314151617181920212223242526272829
  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. # ../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. }