551e9b2cb4
Enable Opencode and Ollama in home modules and import their Nix files. Disable the deprecated system‑module opencode entries and remove it from the core packages list. Add a new GitHub CLI module and a convenient `upf-gh` alias for flake updates using a GitHub token. Update the `stylix` configuration to include Opencode styling. Refresh several flake.lock entries with newer revisions and hashes.
83 lines
1.3 KiB
Nix
83 lines
1.3 KiB
Nix
{
|
|
host,
|
|
shell,
|
|
...
|
|
}: {
|
|
stylix.targets = {
|
|
librewolf.profileNames = ["${host}"];
|
|
|
|
hyprland = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
hyprpaper.enable = true;
|
|
image.enable = true;
|
|
};
|
|
|
|
vscode.enable = false;
|
|
|
|
zed.enable = false;
|
|
|
|
vesktop = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
};
|
|
|
|
noctalia-shell.enable = true;
|
|
|
|
qt = {
|
|
enable = true;
|
|
platform = "qtct";
|
|
};
|
|
|
|
fish = {
|
|
enable =
|
|
if shell == "fish"
|
|
then true
|
|
else false;
|
|
colors.enable = true;
|
|
inputs.enable = true;
|
|
};
|
|
|
|
starship = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
fzf = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
bat = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
anki = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
btop = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
opacity.enable = true;
|
|
};
|
|
|
|
kitty = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
inputs.enable = true;
|
|
opacity.enable = true;
|
|
variant256Colors = true;
|
|
};
|
|
|
|
opencode = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
};
|
|
}
|