mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-02-22 10:30:55 +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
|
./flameshot
|
||||||
./fzf
|
./fzf
|
||||||
./git
|
./git
|
||||||
|
./gpg
|
||||||
./kdeconnect
|
./kdeconnect
|
||||||
./neovim
|
./neovim
|
||||||
./picom
|
./picom
|
||||||
|
|
|
@ -11,4 +11,11 @@
|
||||||
commit.gpgsign = true;
|
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
|
okular
|
||||||
gimp
|
gimp
|
||||||
|
|
||||||
gh # github cli tool
|
|
||||||
|
|
||||||
# sound
|
# sound
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue