flake/hosts/harmonica/configuration.nix
2025-04-24 21:59:07 +03:00

32 lines
554 B
Nix

{
lib,
inputs,
...
}: {
imports = [
./hardware-configuration.nix
../../modules
];
myModules = {
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";
}