config.nix/hosts/marty-latitude/options.nix
2026-05-15 21:53:47 +02:00

22 lines
311 B
Nix

{
config,
pkgs,
lib,
...
}:
{
config = {
user = {
userName = "marty";
shell = pkgs.fish;
};
system = {
timezone = "Europe/Berlin";
language = "en_GB.UTF-8";
locale = "de_DE.UTF-8";
hostname = "marty-latitude";
};
device.type = "laptop";
};
}