16 lines
535 B
Nix
16 lines
535 B
Nix
|
|
# Options shared by every NixOS host (laptops and the WSL box). Imported via
|
||
|
|
# baseModules in flake.nix. Host- and platform-specific settings stay in the
|
||
|
|
# per-machine configs; laptop-only settings live in ./laptop.nix.
|
||
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
time.timeZone = "Europe/London";
|
||
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||
|
|
|
||
|
|
# Minimal system-level CLI available before the home-manager profile loads
|
||
|
|
# (e.g. early boot / rescue). User-level tooling lives in home-manager.
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
git
|
||
|
|
fastfetch
|
||
|
|
];
|
||
|
|
}
|