punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
30 lines
589 B
Nix
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;
|
|
};
|
|
}
|