20 lines
340 B
Nix
20 lines
340 B
Nix
{ config, ... }:
|
|
{
|
|
modules = {
|
|
system.audio.enable = true;
|
|
system.bluetooth.enable = true;
|
|
|
|
authentication.himmelblau.enable = true;
|
|
|
|
root = {
|
|
user = {
|
|
full_name = "__ROOT__";
|
|
email = "__ROOT__@${config.networking.hostName}";
|
|
};
|
|
|
|
shell = {
|
|
default = "zsh";
|
|
};
|
|
};
|
|
};
|
|
}
|