config/users/natalie/configuration.nix

18 lines
392 B
Nix
Raw Normal View History

2025-05-07 10:22:05 -07:00
# Applied to all systems
{pkgs, ...}: {
services.tailscale.enable = true;
fonts.packages = with pkgs; [
nerd-fonts.fira-code
nerd-fonts.iosevka
iosevka
nerd-fonts.symbols-only
nerd-fonts.iosevka
];
# configuration for shared modules.
# all custom options in 'shared' for clarity.
shared.darwin = {
tiling.enable = true; # use tiling window manager
};
}