mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
2daf5f1b05
Thanks @KaitlynEthylia :)
20 lines
528 B
Nix
20 lines
528 B
Nix
{ importAll, ... }:
|
|
|
|
{
|
|
imports = importAll [] ./.;
|
|
|
|
users.users.alyxia = {
|
|
name = "alyxia";
|
|
home = "/Users/alyxia";
|
|
};
|
|
|
|
# enable the gpg agent by default
|
|
programs.gnupg.agent.enable = true;
|
|
|
|
# if you use zsh (the default on new macOS installations),
|
|
# you'll need to enable this so nix-darwin creates a zshrc sourcing needed environment changes
|
|
programs.zsh.enable = true;
|
|
|
|
# tailscaled isn't automatically registered as a service that should run on installation.
|
|
services.tailscale.enable = true;
|
|
}
|