marleyos/modules/home/base/default.nix

36 lines
650 B
Nix
Raw Normal View History

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