initial commit

This commit is contained in:
2024-07-19 02:08:20 -04:00
commit d6690e87b7
18 changed files with 488 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ pkgs, home-manager, ... }:
{
imports = [
../../darwin
];
users.users.wyatt = {
home = "/Users/wyatt";
shell = pkgs.fish;
};
security.pam.enableSudoTouchIdAuth = true;
}

7
hosts/sephiroth/home.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
imports = [
../../home
];
}