mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-02-21 18:10:56 +01:00
git and gpg config
This commit is contained in:
parent
79c06a749a
commit
06ab8644cd
4 changed files with 22 additions and 2 deletions
|
@ -7,6 +7,7 @@
|
|||
./flameshot
|
||||
./fzf
|
||||
./git
|
||||
./gpg
|
||||
./kdeconnect
|
||||
./neovim
|
||||
./picom
|
||||
|
|
|
@ -11,4 +11,11 @@
|
|||
commit.gpgsign = true;
|
||||
};
|
||||
};
|
||||
programs.gh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
editor = "nvim";
|
||||
git_protocol = "ssh";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
14
users/rouven/modules/gpg/default.nix
Normal file
14
users/rouven/modules/gpg/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
mutableKeys = true;
|
||||
publicKeys = [
|
||||
{
|
||||
source = ../../../../keys/pgp/rouven.asc;
|
||||
trust = 5;
|
||||
}
|
||||
];
|
||||
scdaemonSettings = { disable-ccid = true; };
|
||||
};
|
||||
}
|
|
@ -13,8 +13,6 @@
|
|||
okular
|
||||
gimp
|
||||
|
||||
gh # github cli tool
|
||||
|
||||
# sound
|
||||
pavucontrol
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue