17 lines
392 B
Nix
17 lines
392 B
Nix
# 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
|
|
};
|
|
}
|