{ config, lib, pkgs, this, ... }: with lib; let cfg = config.nixfiles.modules.profiles.default; in { imports = [ ./dev ./headful.nix ./headless.nix ]; config = mkIf cfg.enable { programs.less = { enable = true; envVariables.LESSHISTFILE = "-"; }; environment.systemPackages = with pkgs; [ cryptsetup lshw lsof pciutils psmisc usbutils util-linux ]; }; }