blob: 19317ec770c332913117bc7e3cd7fc62bb0ae419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ inputs, ... }:
let
inherit (inputs) self;
in
{
imports = [
./nix.nix
];
system.configurationRevision = self.rev or self.dirtyRev or "dirty-unknown";
time.timeZone = "America/New_York";
}
|