blob: c3d65c0ec8b44749714814c3e0a3fd58e465c68e (
plain) (
tree)
|
|
{
config,
lib,
pkgs,
pkgsStable,
nixpkgs_open_prs,
sysLib,
# extra information
system,
# bins
# TODO: Integrate these <2024-05-22>
river_init_lesser,
shell_library,
# external deps
user_js,
# modules
impermanence,
nix-index-database,
nixVim,
...
}: let
cfg = config.soispha.home-manager;
in {
options.soispha.home-manager = {
enable = lib.mkEnableOption "home-manager with custom config.";
};
config = lib.mkIf cfg.enable {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.soispha = import ../../home;
extraSpecialArgs = {
inherit
nixpkgs_open_prs
pkgsStable
sysLib
# extra information
system
# bins
river_init_lesser
shell_library
# external deps
user_js
# modules
impermanence
nixVim
nix-index-database
;
};
};
};
}
|