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-api-key (lambda () (require 'f) (f-read-text (getenv "OPENAI_API_KEY_PATH"))))
|
||||||
(gptel-model 'gpt-4o)
|
(gptel-model 'gpt-4o)
|
||||||
(gptel-default-mode 'org-mode)
|
(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
|
:config
|
||||||
(require 'gptel-curl)
|
(require 'gptel-curl)
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,9 @@ in
|
||||||
../gitui
|
../gitui
|
||||||
../lazygit
|
../lazygit
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.packages = [ pkgs.git-credential-manager ];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.gitAndTools.gitFull;
|
package = pkgs.gitAndTools.gitFull;
|
||||||
|
@ -27,6 +30,9 @@ in
|
||||||
user.signingKey = "/home/${username}/.ssh/id_rsa";
|
user.signingKey = "/home/${username}/.ssh/id_rsa";
|
||||||
gpg.format = "ssh";
|
gpg.format = "ssh";
|
||||||
commit.gpgsign = true;
|
commit.gpgsign = true;
|
||||||
|
|
||||||
|
credential.helper = "manager";
|
||||||
|
credential.credentialStore = "cache";
|
||||||
};
|
};
|
||||||
|
|
||||||
userName = config.name;
|
userName = config.name;
|
||||||
|
|
|
@ -172,4 +172,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
policy = [ "magic" ];
|
policy = [ "magic" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hardware.hackrf.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = ''
|
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 = {
|
serviceConfig = {
|
||||||
ExecStart = ''
|
ExecStart = ''
|
||||||
${lib.getExe' pkgs.sdrangel "sdrangelsrv"} --remote-tcp-hwtype RTLSDR --remote-tcp-port 1234 --remote-tcp-address ${
|
${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
|
} --remote-tcp
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -50,6 +50,7 @@ in
|
||||||
"wyoming"
|
"wyoming"
|
||||||
"wake_on_lan"
|
"wake_on_lan"
|
||||||
"prometheus"
|
"prometheus"
|
||||||
|
"openai_conversation"
|
||||||
];
|
];
|
||||||
customComponents = with pkgs.home-assistant-custom-components; [
|
customComponents = with pkgs.home-assistant-custom-components; [
|
||||||
tuya_local
|
tuya_local
|
||||||
|
|
Loading…
Add table
Reference in a new issue