sneeuwvlok/_hosts/orome/default.nix
2025-07-28 14:34:09 +02:00

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";
};
};
};
}