Changes
3 changed files (+11/-5)
-
-
@@ -27,6 +27,7 @@scm = import ./scm { username = "Shota FUJI"; email = "pockawoooh@gmail.com"; gpgKeyId = "5E5148973E291363"; }; wayland-de = import ./wayland-de {
-
-
-
@@ -2,11 +2,12 @@ # SCM module: SCM/VCS tools and their configurations.{ username, email, gpgKeyId ? null, }: {...}: { imports = [ ( import ./git.nix { inherit username email; inherit username email gpgKeyId; } ) ./fossil.nix
-
-
-
@@ -1,9 +1,11 @@{ username, email, gpgKeyId, }: { config, pkgs, lib, ... }: { programs = {
-
@@ -13,13 +15,15 @@userName = username; userEmail = email; # Enable signing when key ID is provided signing = lib.mkIf (gpgKeyId != null) { key = gpgKeyId; signByDefault = true; }; extraConfig = { core = { editor = "nvim"; }; commit = { gpgsign = true; }; init = {
-