Files
TheCrazyInsanity 68f8144c18 ough
2026-01-08 15:39:33 +00:00

23 lines
389 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
../../modules/kde/home.nix
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}