first try

This commit is contained in:
2025-12-07 00:53:22 -05:00
commit e048d4d5c7
17 changed files with 455 additions and 0 deletions

14
machines/homepc/home.nix Normal file
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 = "/home/laythe";
imports = [
../../home/default.nix
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}