Files
2026-05-21 21:16:51 -04:00

24 lines
406 B
Nix
Executable File

{
config,
pkgs,
lib,
inputs,
outputs,
...
}:
{
# These both are probably always going to be the same, but I'll keep them local just in case:tm:
home.username = "laythe";
home.homeDirectory = lib.mkForce "/home/laythe";
imports = [
../../home/default.nix
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
fonts.fontconfig.subpixelRendering = "none";
}