Compare commits
9 commits
af7ee36887
...
4161467d66
Author | SHA1 | Date | |
---|---|---|---|
4161467d66 | |||
b82994c914 | |||
ae8bad7a03 | |||
40fd5e3035 | |||
663b2c4eb4 | |||
dabe148755 | |||
9b47d50dc6 | |||
cbd5408e45 | |||
1216292c4c |
7 changed files with 26 additions and 17 deletions
24
flake.lock
generated
24
flake.lock
generated
|
@ -122,11 +122,11 @@
|
|||
"nixpkgs-stable": "nixpkgs-stable"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745745433,
|
||||
"narHash": "sha256-fpb9C7rV2XxWnmr7QAgb9ioh21a7lstZVOYuDnR2Dxc=",
|
||||
"lastModified": 1745830889,
|
||||
"narHash": "sha256-P51C3ennff9hNhHr6SsxowZKpbPsa2U4DjC+DIu4Lyg=",
|
||||
"owner": "nix-community",
|
||||
"repo": "emacs-overlay",
|
||||
"rev": "24a3e2b6b0dda50c1afaa3da730f156d0400e95a",
|
||||
"rev": "2a6d6d064e33d65dc660b65c28ce17195e539db6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -387,11 +387,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745810134,
|
||||
"narHash": "sha256-WfnYH/i7DFzn4SESQfWviXiNUZjohZhzODqLwKYHIPI=",
|
||||
"lastModified": 1745851658,
|
||||
"narHash": "sha256-g0SwcRgKLNaSjobwfp9ucQJgxY7wPYxk9KZkmP/Kw0Y=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "be7cf1709b469a2a2c62169172a167d1fed3509f",
|
||||
"rev": "69c60b035e6bb51a4c5607f184bf64312c294139",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -647,11 +647,11 @@
|
|||
},
|
||||
"nixpkgs-stable": {
|
||||
"locked": {
|
||||
"lastModified": 1745487689,
|
||||
"narHash": "sha256-FQoi3R0NjQeBAsEOo49b5tbDPcJSMWc3QhhaIi9eddw=",
|
||||
"lastModified": 1745742390,
|
||||
"narHash": "sha256-1rqa/XPSJqJg21BKWjzJZC7yU0l/YTVtjRi0RJmipus=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "5630cf13cceac06cefe9fc607e8dfa8fb342dde3",
|
||||
"rev": "26245db0cb552047418cfcef9a25da91b222d6c7",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -1009,11 +1009,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745829891,
|
||||
"narHash": "sha256-aRkV0ZpfT/ERgRlGrbgjHFRcEWdseltSO+wPnpdPYKg=",
|
||||
"lastModified": 1745848521,
|
||||
"narHash": "sha256-gNrTO3pEjmu3WiuYrUHJrTGCFw9v+qZXCFmX/Vjf5WI=",
|
||||
"owner": "numtide",
|
||||
"repo": "treefmt-nix",
|
||||
"rev": "d1863f30d9ca67f679f9c2583d7adf674b5d9b8a",
|
||||
"rev": "763f1ce0dd12fe44ce6a5c6ea3f159d438571874",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -378,7 +378,9 @@
|
|||
(vertico-mode t)
|
||||
:bind (:map vertico-map
|
||||
(("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
|
||||
;; :after vertico
|
||||
|
@ -1013,17 +1015,17 @@ This is meant to be an helper to be called from the window manager."
|
|||
|
||||
(use-package gptel
|
||||
:custom
|
||||
(gptel-model 'google/gemini-2.0-flash-001)
|
||||
(gptel-model 'google/gemini-2.5-flash-preview)
|
||||
(gptel-backend (gptel-make-openai "OpenRouter"
|
||||
:host "openrouter.ai"
|
||||
:endpoint "/api/v1/chat/completions"
|
||||
:key (lambda () (require 'f) (f-read-text (getenv "OPENAI_API_KEY_PATH")))
|
||||
:stream t
|
||||
:models '(google/gemini-2.0-flash-001))
|
||||
:models '(google/gemini-2.5-flash-preview))
|
||||
)
|
||||
(gptel-default-mode 'org-mode)
|
||||
(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
|
||||
("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 ];
|
||||
}
|
|
@ -34,7 +34,6 @@
|
|||
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
};
|
||||
|
||||
programs.vim.enable = true;
|
||||
|
|
|
@ -75,6 +75,8 @@
|
|||
"chirp"
|
||||
"sdrangel"
|
||||
"zmkbatx"
|
||||
"moonlight"
|
||||
"gimp"
|
||||
];
|
||||
extraGroups = [ "plugdev" ];
|
||||
backupPaths = [ ];
|
||||
|
|
|
@ -98,6 +98,7 @@
|
|||
"zoom"
|
||||
"pantalaimon"
|
||||
"moonlight"
|
||||
"gimp"
|
||||
];
|
||||
extraGroups = [ "plugdev" ];
|
||||
backupPaths = [ ];
|
||||
|
|
|
@ -88,6 +88,7 @@
|
|||
"discord"
|
||||
"zoom"
|
||||
"pantalaimon"
|
||||
"gimp"
|
||||
];
|
||||
extraGroups = [ "plugdev" ];
|
||||
backupPaths = [ ];
|
||||
|
|
Loading…
Add table
Reference in a new issue