dotfiles/nix/system/default.nix
Alyxia Sother 2daf5f1b05
[nix] Redo and restructure the entire config
Thanks @KaitlynEthylia :)
2024-07-11 19:07:47 +02:00

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;
}