summaryrefslogtreecommitdiff
path: root/modules/shared/default.nix
blob: edd1f342dbce12d70f0c44a0cacf1d864d269e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  inputs,
  ...
}: let
  inherit (inputs) self;
in {
  imports = [
    ./nix.nix
    ./suites
    ./users
  ];

  system.configurationRevision = self.rev or self.dirtyRev or "dirty-unknown";

  documentation = {
    doc.enable = false;
    info.enable = false;
  };

  time.timeZone = lib.mkDefault "America/New_York";

  programs.gnupg.agent.enable = lib.mkDefault true;
}