{ self, inputs, ... }: { flake.nixosModules.core = { pkgs, lib, ... }: let modules = with self.nixosModules; [ user bootloader nix locale ]; in { imports = [ # /etc/nixos/hardware-configuration.nix ] ++ modules; services = { openssh = { enable = true; permitRootLogin = "yes"; }; }; environment.systemPackages = with pkgs; [ vim unzip p7zip-rar usbutils lsof python315 curlWithGnuTls wget ]; system.stateVersion = "26.02"; }; }