20 lines
392 B
Nix
20 lines
392 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./home.nix
|
|
./util/local-webapp.nix
|
|
./util/containers.nix
|
|
# ./programs/stable-diffusion.nix
|
|
# ./programs/openwebui.nix
|
|
./programs/sillytavern.nix
|
|
];
|
|
|
|
home = rec {
|
|
username = "bolt";
|
|
homeDirectory = "/home/bolt";
|
|
sessionVariables.FLAKE = "${homeDirectory}/.nix";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
nicotine-plus
|
|
];
|
|
}
|