14 lines
242 B
Nix
14 lines
242 B
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./audio
|
|
./base-cli
|
|
./hardware
|
|
./virt
|
|
];
|
|
|
|
# Timzone and locales (same for all machines so I put it here)
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
time.timeZone = "Europe/Paris";
|
|
}
|