This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/hosts/sephiroth/configuration.nix
2024-07-19 02:08:20 -04:00

15 lines
196 B
Nix

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