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

22 lines
373 B
Nix

{ lib, config, ... }:let
inherit (lib) mkForce;
in
{
modules = {
system.audio.enable = true;
desktop.gaming.enable = true;
root = {
user = {
full_name = "__ROOT__";
email = "__ROOT__@${config.networking.hostName}";
};
shell = {
default = "zsh";
toolset.git.enable = mkForce false;
};
};
};
}