mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2025-08-04 01:00:22 -04:00
updage: misc
This commit is contained in:
parent
74d240aecb
commit
391159f8f3
4 changed files with 23 additions and 3 deletions
|
@ -21,6 +21,7 @@
|
||||||
./desktop/hyprpanel.nix
|
./desktop/hyprpanel.nix
|
||||||
./desktop/hyprpaper.nix
|
./desktop/hyprpaper.nix
|
||||||
./desktop/hypridle.nix
|
./desktop/hypridle.nix
|
||||||
|
./desktop/desktop.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the paths it should manage
|
# Home Manager needs a bit of information about you and the paths it should manage
|
||||||
|
@ -45,6 +46,8 @@
|
||||||
kitty
|
kitty
|
||||||
firefox
|
firefox
|
||||||
mpv
|
mpv
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
|
||||||
nerd-fonts.dejavu-sans-mono
|
nerd-fonts.dejavu-sans-mono
|
||||||
nerd-fonts.daddy-time-mono
|
nerd-fonts.daddy-time-mono
|
||||||
|
@ -168,6 +171,8 @@
|
||||||
psmisc
|
psmisc
|
||||||
air
|
air
|
||||||
pyfa
|
pyfa
|
||||||
|
|
||||||
|
google-chrome
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable home-manager
|
# Enable home-manager
|
||||||
|
|
|
@ -73,12 +73,11 @@
|
||||||
prev = "[[";
|
prev = "[[";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
provider = "ollama";
|
providers.ollama = {
|
||||||
auto_suggestions_provider = "ollama";
|
|
||||||
ollama = {
|
|
||||||
endpoint = "http://127.0.0.1:11434";
|
endpoint = "http://127.0.0.1:11434";
|
||||||
model = "kirito1/qwen3-coder";
|
model = "kirito1/qwen3-coder";
|
||||||
};
|
};
|
||||||
|
auto_suggestions_provider = "ollama";
|
||||||
windows = {
|
windows = {
|
||||||
sidebar_header = {
|
sidebar_header = {
|
||||||
align = "center";
|
align = "center";
|
||||||
|
|
12
hosts/common/optional/fcitx5.nix
Normal file
12
hosts/common/optional/fcitx5.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
i18n.inputMethod = {
|
||||||
|
type = "fcitx5";
|
||||||
|
enable = true;
|
||||||
|
fcitx5.addons = with pkgs; [
|
||||||
|
fcitx5-chinese-addons
|
||||||
|
fcitx5-pinyin-zhwiki
|
||||||
|
fcitx5-pinyin-moegirl
|
||||||
|
fcitx5-pinyin-minecraft
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
4
hosts/common/optional/flatpak.nix
Normal file
4
hosts/common/optional/flatpak.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# hosts/common/optional/flatpak.nix
|
||||||
|
{...}: {
|
||||||
|
services.flatpak.enable = true;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue