Files
nixos-configv3/machines/workstation/home.nix
TheCrazyInsanity af861165e5 idk man
2025-12-18 14:26:37 -05:00

15 lines
344 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 = "25.11";
programs.home-manager.enable = true;
}