22 lines
322 B
Nix
22 lines
322 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./home.nix
|
|
./util/local-webapp.nix
|
|
./programs/stable-diffusion.nix
|
|
./programs/ollama.nix
|
|
];
|
|
|
|
home = {
|
|
username = "bolt";
|
|
homeDirectory = "/home/bolt";
|
|
};
|
|
|
|
services.flatpak.packages = ["org.nicotine_plus.Nicotine"];
|
|
}
|