dotfiles/default.nix

33 lines
597 B
Nix
Raw Normal View History

2024-07-17 13:18:59 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
2024-07-18 04:08:27 +00:00
# TODO: Temporary until it has been subdivided into modules.
./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
# System configuration options
./system.nix
2024-07-17 13:18:59 +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
};
}