Compare commits
No commits in common. "4b827fb7ffa3da1c473d5a364aeeeeb07b1bcdc7" and "96cc9788d7b036a168aa5f61495fe2c77e231555" have entirely different histories.
4b827fb7ff
...
96cc9788d7
|
@ -26,10 +26,6 @@
|
||||||
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";
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhkuJP+wvKrWvzSn+14EMxPflb/L/yKiAPUEKu3hNFx rilla@penguin
|
|
|
@ -10,11 +10,10 @@ 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 = {
|
||||||
|
@ -40,7 +39,7 @@ in
|
||||||
|
|
||||||
"bitbucket.org" = defaultBlock // {
|
"bitbucket.org" = defaultBlock // {
|
||||||
user = "git";
|
user = "git";
|
||||||
identityFile = "~/.ssh/bitbucket_ed25519";
|
identityFile = "~/.ssh/bitbucket_rsa";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue