home: add git config and common module for headless systems

This commit is contained in:
2025-06-05 18:47:15 -07:00
parent 64e7aa87ab
commit 062d80750c
7 changed files with 127 additions and 87 deletions

21
home/common-desktop.nix Normal file
View File

@@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }:
{
imports = [
./modules/starship.nix
./modules/plasma.nix
];
services.darkman = {
enable = true;
settings = {
lat = 37.3387;
lng = -121.8853;
};
lightModeScripts = {
plasma-color = "plasma-apply-colorscheme BreezeLight";
};
darkModeScripts = {
plasma-color = "plasma-apply-colorscheme BreezeDark";
};
};
}