NixOS/hosts/luna/modules/default.nix

17 lines
227 B
Nix
Raw Normal View History

2023-10-13 19:50:01 -05:00
{ config, pkgs, lib, ... }:
{
2023-12-03 02:32:12 -06:00
time.timeZone = "America/Chicago";
2023-10-27 23:02:52 -05:00
imports = [
./services
./docker
./impermanence.nix
2023-10-27 23:02:52 -05:00
./nix.nix
./networking.nix
./programs.nix
./user.nix
./system.nix
2023-10-27 23:02:52 -05:00
];
2023-10-13 19:50:01 -05:00
}