Compare commits
6 commits
8cf062885e
...
40fd5e3035
Author | SHA1 | Date | |
---|---|---|---|
40fd5e3035 | |||
663b2c4eb4 | |||
dabe148755 | |||
9b47d50dc6 | |||
cbd5408e45 | |||
1216292c4c |
5 changed files with 14 additions and 4 deletions
|
@ -378,7 +378,9 @@
|
||||||
(vertico-mode t)
|
(vertico-mode t)
|
||||||
:bind (:map vertico-map
|
:bind (:map vertico-map
|
||||||
(("DEL" . vertico-directory-delete-char)
|
(("DEL" . vertico-directory-delete-char)
|
||||||
("C-DEL" . vertico-directory-delete-word))))
|
("C-DEL" . vertico-directory-delete-word)
|
||||||
|
("M-q" . vertico-quick-insert)
|
||||||
|
("C-q" . vertico-quick-exit))))
|
||||||
|
|
||||||
;; (use-package vertico-posframe
|
;; (use-package vertico-posframe
|
||||||
;; :after vertico
|
;; :after vertico
|
||||||
|
@ -1013,17 +1015,17 @@ This is meant to be an helper to be called from the window manager."
|
||||||
|
|
||||||
(use-package gptel
|
(use-package gptel
|
||||||
:custom
|
:custom
|
||||||
(gptel-model 'google/gemini-2.0-flash-001)
|
(gptel-model 'google/gemini-2.5-flash-preview)
|
||||||
(gptel-backend (gptel-make-openai "OpenRouter"
|
(gptel-backend (gptel-make-openai "OpenRouter"
|
||||||
:host "openrouter.ai"
|
:host "openrouter.ai"
|
||||||
:endpoint "/api/v1/chat/completions"
|
:endpoint "/api/v1/chat/completions"
|
||||||
:key (lambda () (require 'f) (f-read-text (getenv "OPENAI_API_KEY_PATH")))
|
:key (lambda () (require 'f) (f-read-text (getenv "OPENAI_API_KEY_PATH")))
|
||||||
:stream t
|
:stream t
|
||||||
:models '(google/gemini-2.0-flash-001))
|
:models '(google/gemini-2.5-flash-preview))
|
||||||
)
|
)
|
||||||
(gptel-default-mode 'org-mode)
|
(gptel-default-mode 'org-mode)
|
||||||
(gptel-org-branching-context nil) ;; this is cool but I don't feel comfortable with it
|
(gptel-org-branching-context nil) ;; this is cool but I don't feel comfortable with it
|
||||||
(gptel-use-tools 't)
|
(gptel-use-tools nil)
|
||||||
|
|
||||||
:bind
|
:bind
|
||||||
("C-c a a" . gptel-add)
|
("C-c a a" . gptel-add)
|
||||||
|
|
4
hmModules/gimp/default.nix
Normal file
4
hmModules/gimp/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = [ pkgs.gimp ];
|
||||||
|
}
|
|
@ -75,6 +75,8 @@
|
||||||
"chirp"
|
"chirp"
|
||||||
"sdrangel"
|
"sdrangel"
|
||||||
"zmkbatx"
|
"zmkbatx"
|
||||||
|
"moonlight"
|
||||||
|
"gimp"
|
||||||
];
|
];
|
||||||
extraGroups = [ "plugdev" ];
|
extraGroups = [ "plugdev" ];
|
||||||
backupPaths = [ ];
|
backupPaths = [ ];
|
||||||
|
|
|
@ -98,6 +98,7 @@
|
||||||
"zoom"
|
"zoom"
|
||||||
"pantalaimon"
|
"pantalaimon"
|
||||||
"moonlight"
|
"moonlight"
|
||||||
|
"gimp"
|
||||||
];
|
];
|
||||||
extraGroups = [ "plugdev" ];
|
extraGroups = [ "plugdev" ];
|
||||||
backupPaths = [ ];
|
backupPaths = [ ];
|
||||||
|
|
|
@ -88,6 +88,7 @@
|
||||||
"discord"
|
"discord"
|
||||||
"zoom"
|
"zoom"
|
||||||
"pantalaimon"
|
"pantalaimon"
|
||||||
|
"gimp"
|
||||||
];
|
];
|
||||||
extraGroups = [ "plugdev" ];
|
extraGroups = [ "plugdev" ];
|
||||||
backupPaths = [ ];
|
backupPaths = [ ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue