Compare commits
2 Commits
96cc9788d7
...
4b827fb7ff
Author | SHA1 | Date |
---|---|---|
Ricard Illa | 4b827fb7ff | |
Ricard Illa | fc221684e2 |
|
@ -26,6 +26,10 @@
|
||||||
outputs.homeManagerModules.rss
|
outputs.homeManagerModules.rss
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.sessionPath = [
|
||||||
|
"$HOME/.local/bin"
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [ wl-clipboard libnotify ];
|
home.packages = with pkgs; [ wl-clipboard libnotify ];
|
||||||
|
|
||||||
home.stateVersion = "23.05";
|
home.stateVersion = "23.05";
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhkuJP+wvKrWvzSn+14EMxPflb/L/yKiAPUEKu3hNFx rilla@penguin
|
|
@ -10,10 +10,11 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home.file.".ssh/id_rsa.pub".source = ./id_rsa_gpg.pub;
|
|
||||||
home.file.".ssh/id_rsa_-cert.pub".source = ./id_rsa_gpg-cert.pub;
|
|
||||||
home.file.".ssh/id_rsa_gpg.pub".source = ./id_rsa_gpg.pub;
|
home.file.".ssh/id_rsa_gpg.pub".source = ./id_rsa_gpg.pub;
|
||||||
home.file.".ssh/id_rsa_gpg-cert.pub".source = ./id_rsa_gpg-cert.pub;
|
home.file.".ssh/id_rsa_gpg-cert.pub".source = ./id_rsa_gpg-cert.pub;
|
||||||
|
|
||||||
|
home.file.".ssh/bitbucket_ed25519.pub".source = ./bitbucket_ed25519.pub;
|
||||||
|
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
|
@ -39,7 +40,7 @@ in
|
||||||
|
|
||||||
"bitbucket.org" = defaultBlock // {
|
"bitbucket.org" = defaultBlock // {
|
||||||
user = "git";
|
user = "git";
|
||||||
identityFile = "~/.ssh/bitbucket_rsa";
|
identityFile = "~/.ssh/bitbucket_ed25519";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue