mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

- Changed default model from `moonshot/kimi-k2-0711-preview` to `z/glm-4.5` - Added new provider configuration for Z AI with GLM-4.5 model - Added hyprpolkitagent to Hyprland packages - Updated Ollama models list (removed some Gemma models, added qwen3-coder) - Added chromium and playwright to system packages
37 lines
607 B
Nix
37 lines
607 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
# Enable Hyprland
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
};
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
environment.sessionVariables.WLR_NO_HARDWARE_CURSORS = "1";
|
|
|
|
programs.hyprlock.enable = true;
|
|
services.hypridle.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pyprland
|
|
hyprpicker
|
|
hyprcursor
|
|
hyprlock
|
|
hypridle
|
|
hyprpaper
|
|
hyprpolkitagent
|
|
|
|
inputs.wezterm.packages.${pkgs.system}.default
|
|
kitty
|
|
cool-retro-term
|
|
|
|
starship
|
|
helix
|
|
|
|
qutebrowser
|
|
zathura
|
|
mpv
|
|
imv
|
|
];
|
|
}
|