25 lines
366 B
Nix
25 lines
366 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/device/laptop.nix
|
|
];
|
|
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";
|
|
};
|
|
}
|