{ config, pkgs, lib, self, ... }: with lib; let psCfg = config.pub-solar; xdg = config.home-manager.users."${psCfg.user.name}".xdg; in { imports = [ ]; pub-solar.graphical.autologin.enable = false; security.sudo.extraRules = [ { users = [ "${psCfg.user.name}" ]; commands = [ { command = "ALL"; options = [ "NOPASSWD" ]; } ]; } ]; home-manager = pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] { home.packages = with pkgs; [ dig fping btop ncdu sysstat tig wakeonlan ]; }; }