marleyos/modules/home/base/default.nix

17 lines
285 B
Nix
Raw Normal View History

{ namespace, lib, ... }:
let
inherit (lib.${namespace}) enabled;
in
2024-11-15 18:22:58 -08:00
{
config = {
${namespace}.my = {
name = "marley";
username = "punkfairie";
fullName = "Marley Rae";
email = "marley@punkfairie.net";
};
programs.home-manager = enabled;
2024-11-15 18:22:58 -08:00
};
}