Add new machine but i remembered to add the new files

This commit is contained in:
TheCrazyInsanity
2025-12-16 07:58:40 -05:00
parent 3864496784
commit 957e88b6b5
3 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{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;
}