feat(home): Use me

This commit is contained in:
punkfairie 2024-11-13 21:11:48 -08:00
parent e9f3156e1f
commit e63b6d8914
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
2 changed files with 11 additions and 5 deletions

View file

@ -26,7 +26,6 @@
[
inputs.rose-pine.homeManagerModules.rose-pine
"${myHomeMods}/iconTheme.nix"
"${myHomeMods}/me.nix"
"${myHomeMods}/shellAbbrs.nix"
"${self}/home"
];
@ -37,16 +36,18 @@
{ pkgs, ... }:
let
me = "marley";
home = if pkgs.stdenv.isDarwin then "Users" else "home";
inherit (self.nixos-unified.lib) mkHomeConfiguration;
in
{
legacyPackages.homeConfigurations."${me}" = mkHomeConfiguration pkgs (
{ pkgs, ... }:
{
imports = [ self.homeModules."${me}" ];
home.username = me;
home.homeDirectory = "/${home}/${me}";
imports = [
"${self}/modules/home/me.nix"
self.homeModules."${me}"
];
me.name = me;
home.stateVersion = "24.05";
}
);

View file

@ -4,6 +4,11 @@
...
}:
{
me = {
username = "punkfairie";
email = "marley@punkfairie.net";
};
targets.genericLinux.enable = lib.mkIf pkgs.stdenv.isLinux true;
home.language.base = "en_US.UTF-8";