feat: update desktop apps configuration
LibreOffice: bump versiont to newest Firefox: change to firefox-devedition Programs: reorganise config into special programs dir
This commit is contained in:
parent
1747a5ad81
commit
3685cf5abe
4 changed files with 38 additions and 37 deletions
10
home-manager/stvnliu/programs/default.nix
Normal file
10
home-manager/stvnliu/programs/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./git.nix
|
||||
];
|
||||
}
|
21
home-manager/stvnliu/programs/git.nix
Normal file
21
home-manager/stvnliu/programs/git.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
package = pkgs.gitFull;
|
||||
userName = config.myDisplayName;
|
||||
userEmail = config.myEmail;
|
||||
extraConfig = {
|
||||
push.autoSetupRemote = true;
|
||||
commit.gpgsign = true;
|
||||
gpg.format = "ssh";
|
||||
gpg.ssh.allowedSignersFile = "/home/${config.myUserName}/.ssh/allowed_signers";
|
||||
user.signingkey = "/home/${config.myUserName}/.ssh/id_ed25519.pub";
|
||||
credential.helper = "libsecret";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue