Improvements to server
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
{ config, pkgs, ... }: {
|
||||
{ config, lib, pkgs, ... }: {
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
signing = {
|
||||
key = "${config.usercfg.git.key}";
|
||||
signing = lib.mkIf (config.usercfg.git.key != null) {
|
||||
key = config.usercfg.git.key;
|
||||
signByDefault = true;
|
||||
};
|
||||
ignores = [ "*result*" ".direnv" "node_modules" ];
|
||||
|
||||
Reference in New Issue
Block a user