1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ self, ... }: { imports = [ ./hardware-configuration.nix "${self}/modules/core" "${self}/modules/laptop" "${self}/modules/options" "${self}/modules/pc" ]; config = { modules.nix.extend = false; system.stateVersion = "24.05"; networking.hostName = "akashi"; services.openssh.settings.PermitRootLogin = "yes"; }; }