{ pkgs, modulesPath, ... }: { imports = [ ./modules/dynamic-overrides.nix ./modules/dynamicism "${modulesPath}/profiles/qemu-guest.nix" ]; dynamicism.for.gotosocial.enable = true; # Just an example system. users.mutableUsers = false; users.users.root = { password = "root"; }; services.openssh = { enable = true; settings = { PermitRootLogin = "yes"; }; }; environment.shellAliases = { ls = "eza --long --header --group --group-directories-first --classify --binary"; }; environment.systemPackages = with pkgs; [ eza fd ripgrep ]; system.stateVersion = "25.11"; }