marleyos/modules/home/base/base/default.nix
punkfairie 15372b7726
feat: ${namespace} -> marleyos
There was little point to doing this anyway as project-wide find &
replace is trivial.
2024-11-16 22:36:34 -08:00

30 lines
589 B
Nix

{
lib,
pkgs,
...
}:
let
inherit (lib.marleyos) enabled;
in
{
# Anything in this folder should not include an enable/disable option. This is
# the only folder that is always applied.
config = {
marleyos.my = {
name = "marley";
username = "punkfairie";
fullName = "Marley Rae";
email = "marley@punkfairie.net";
};
# Tell nix what version it is.
nix.package = pkgs.nix;
home.language.base = "en_US.UTF-8";
programs.home-manager = enabled;
# Autostart wanted systemd services.
systemd.user.startServices = true;
};
}