{ inputs, specialArgs, config, lib, ... }: { imports = [ inputs.home-manager.nixosModule ]; options = { imalison.nixOverlay.enable = lib.mkOption { default = true; type = lib.types.bool; }; }; config = { home-manager.extraSpecialArgs = { nixos = { inherit specialArgs config; }; }; home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; nix = rec { extraOptions = '' experimental-features = nix-command flakes ''; registry.nixpkgs.flake = inputs.nixpkgs; settings = { keep-outputs = true; keep-derivations = true; }; channel.enable = false; nixPath = [ "nixpkgs=${inputs.nixpkgs.outPath}" ]; settings.nix-path = nixPath; }; nixpkgs.overlays = [ (import ./overlay.nix) ] ++ (if config.imalison.nixOverlay.enable then [ inputs.nix.overlays.default ] else []); # Allow all the things nixpkgs.config.allowUnfree = true; }; }