From b8dd06529fe0439e6722b05b643969717ffacfc4 Mon Sep 17 00:00:00 2001 From: Felix Schneider <99918022+trueberryless@users.noreply.github.com> Date: Sun, 14 Dec 2025 15:51:04 +0100 Subject: [PATCH] feat: ollama, zed settings and some other updates --- dotfiles/zed/settings.json | 4 ++-- flake.nix | 2 +- modules/apps.nix | 1 - modules/home-manager.nix | 6 +++++- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/dotfiles/zed/settings.json b/dotfiles/zed/settings.json index da276b1..6eaed8c 100644 --- a/dotfiles/zed/settings.json +++ b/dotfiles/zed/settings.json @@ -10,8 +10,8 @@ "icon_theme": "Catppuccin Mocha", "base_keymap": "JetBrains", "vim_mode": false, - "ui_font_size": 16, - "buffer_font_size": 17.0, + "ui_font_size": 13, + "buffer_font_size": 14.0, "theme": { "mode": "system", "light": "Catppuccin Mocha", diff --git a/flake.nix b/flake.nix index 8cabfcb..0c2b28d 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,7 @@ home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.extraSpecialArgs = { - inherit username; + inherit username hostname; }; home-manager.users.${username} = import ./modules/home-manager.nix; } diff --git a/modules/apps.nix b/modules/apps.nix index 126001a..fb63304 100644 --- a/modules/apps.nix +++ b/modules/apps.nix @@ -28,7 +28,6 @@ in { raycast tmux tree - youtube-music zed-editor zoxide ]) ++ devShells; diff --git a/modules/home-manager.nix b/modules/home-manager.nix index 7dcb36c..83706d4 100644 --- a/modules/home-manager.nix +++ b/modules/home-manager.nix @@ -3,7 +3,7 @@ home.username = username; home.homeDirectory = "/Users/${username}"; - home.stateVersion = "25.05"; + home.stateVersion = "25.11"; programs.home-manager.enable = true; home.packages = with pkgs; [ @@ -22,4 +22,8 @@ ".config/zed/settings.json".source = ../dotfiles/zed/settings.json; ".config/zed/keymap.json".source = ../dotfiles/zed/keymap.json; }; + + services.ollama = { + enable = true; + }; } -- 2.51.2