Compare commits
5 commits
2b2326a65c
...
0f94246609
Author | SHA1 | Date | |
---|---|---|---|
0f94246609 | |||
d5582a3371 | |||
cc66970484 | |||
42cdcd29c1 | |||
31b758d884 |
5 changed files with 12 additions and 3 deletions
|
@ -882,7 +882,7 @@ This is meant to be an helper to be called from the window manager."
|
|||
(gptel-api-key (lambda () (require 'f) (f-read-text (getenv "OPENAI_API_KEY_PATH"))))
|
||||
(gptel-model 'gpt-4o)
|
||||
(gptel-default-mode 'org-mode)
|
||||
(gptel-org-branching-context 't)
|
||||
(gptel-org-branching-context nil) ;; this is cool but I don't feel comfortable with it
|
||||
:config
|
||||
(require 'gptel-curl)
|
||||
|
||||
|
|
|
@ -14,6 +14,9 @@ in
|
|||
../gitui
|
||||
../lazygit
|
||||
];
|
||||
|
||||
home.packages = [ pkgs.git-credential-manager ];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
package = pkgs.gitAndTools.gitFull;
|
||||
|
@ -27,6 +30,9 @@ in
|
|||
user.signingKey = "/home/${username}/.ssh/id_rsa";
|
||||
gpg.format = "ssh";
|
||||
commit.gpgsign = true;
|
||||
|
||||
credential.helper = "manager";
|
||||
credential.credentialStore = "cache";
|
||||
};
|
||||
|
||||
userName = config.name;
|
||||
|
|
|
@ -172,4 +172,6 @@
|
|||
enable = true;
|
||||
policy = [ "magic" ];
|
||||
};
|
||||
|
||||
hardware.hackrf.enable = true;
|
||||
}
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = ''
|
||||
${lib.getExe' pkgs.rtl-sdr "rtl_tcp"} -a ${vpn.${config.networking.hostName}}
|
||||
${lib.getExe' pkgs.rtl-sdr "rtl_tcp"} -a ${vpn.${config.networking.hostName}.ip}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
@ -86,7 +86,7 @@
|
|||
serviceConfig = {
|
||||
ExecStart = ''
|
||||
${lib.getExe' pkgs.sdrangel "sdrangelsrv"} --remote-tcp-hwtype RTLSDR --remote-tcp-port 1234 --remote-tcp-address ${
|
||||
vpn.${config.networking.hostName}
|
||||
vpn.${config.networking.hostName}.ip
|
||||
} --remote-tcp
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -50,6 +50,7 @@ in
|
|||
"wyoming"
|
||||
"wake_on_lan"
|
||||
"prometheus"
|
||||
"openai_conversation"
|
||||
];
|
||||
customComponents = with pkgs.home-assistant-custom-components; [
|
||||
tuya_local
|
||||
|
|
Loading…
Add table
Reference in a new issue