feat(home-manager): set GTK theme and git signing format

This commit is contained in:
2026-03-26 21:28:00 -07:00
committed by Kat Huang
parent 59bdad2aad
commit c20f48037c
2 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, lib, nixos, ... }: { config, pkgs, lib, nixos, ... }:
{ {
# Automatic garbage collection of old home-manager generations # Automatic garbage collection of old home-manager generations
nix.gc = { nix.gc = {
@@ -102,6 +102,13 @@
name = "Numix-Circle"; name = "Numix-Circle";
}; };
theme = {
package = pkgs.arc-theme;
name = "Arc";
};
gtk4.theme = config.gtk.theme;
font = { font = {
package = pkgs.noto-fonts-color-emoji; package = pkgs.noto-fonts-color-emoji;
name = "Noto Sans"; name = "Noto Sans";

View File

@@ -6,6 +6,7 @@
]; ];
programs.git.enable = true; programs.git.enable = true;
programs.git.signing.format = "openpgp";
programs.gh = { programs.gh = {
enable = true; enable = true;
settings.git_protocol = "ssh"; settings.git_protocol = "ssh";