nix-conf/system/dev/public/dn/common.nix
2026-03-06 17:06:53 +08:00

22 lines
395 B
Nix
Executable file

{ config, ... }:
let
inherit (config.systemConf) username;
in
{
systemConf = {
face = ../../../../home/config/.face;
domain = "dnywe.com";
};
home-manager.users."${username}" =
{ ... }:
{
imports = [
# Git
(import ../../../../home/user/git.nix {
inherit username;
email = "Danny01161013@gmail.com";
})
];
};
}