flake/hosts/nixos/harmonica/configuration.nix
2025-10-19 16:53:34 +03:00

33 lines
567 B
Nix

{
lib,
inputs,
...
}:
{
imports = [
./hardware-configuration.nix
../../../modules/nixos
];
osbmModules = {
enableKDE = false;
enableFonts = false;
blockYoutube = false;
blockTwitter = false;
};
i18n.inputMethod.enable = lib.mkForce false; # no need for japanese input method
system.stateVersion = "25.05";
networking.hostName = "harmonica";
# NTP time sync.
services.timesyncd.enable = true;
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
# services.getty.autologinUser = "osbm";
}