2024-07-17 13:18:59 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2024-07-17 17:20:32 +00:00
|
|
|
{
|
|
|
|
imports = [
|
2024-07-18 04:08:27 +00:00
|
|
|
# TODO: Temporary until it has been subdivided into modules.
|
2024-07-17 17:20:32 +00:00
|
|
|
./merged.nix
|
2024-07-17 13:18:59 +00:00
|
|
|
|
2024-07-18 04:08:27 +00:00
|
|
|
# Modules
|
|
|
|
./modules/default.nix
|
2024-07-17 13:18:59 +00:00
|
|
|
|
2024-07-17 17:20:32 +00:00
|
|
|
# System configuration options
|
|
|
|
./system.nix
|
2024-07-17 13:18:59 +00:00
|
|
|
|
2024-07-17 17:20:32 +00:00
|
|
|
# Import test configuration
|
|
|
|
./test.nix
|
|
|
|
];
|
2024-07-17 13:18:59 +00:00
|
|
|
|
2024-07-18 04:08:27 +00:00
|
|
|
config = {
|
|
|
|
# Allow unfree packages
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
# Enable default modules
|
|
|
|
modules = {
|
|
|
|
# Greeter
|
|
|
|
tuigreet.enable = true;
|
2024-07-17 13:18:59 +00:00
|
|
|
};
|
|
|
|
|
2024-07-18 04:08:27 +00:00
|
|
|
# Localization settings
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
console.keyMap = "us";
|
2024-07-17 13:18:59 +00:00
|
|
|
};
|
2024-07-17 17:20:32 +00:00
|
|
|
}
|