.dotfiles/nix/pkgs/darwin.nix
2025-01-30 20:52:12 +01:00

13 lines
249 B
Nix

{ pkgs, config, ... }:
{
home = {
packages = with pkgs; [
gawk
discord
];
file = {
".config/aerospace/aerospace.toml".source =
config.lib.file.mkOutOfStoreSymlink ../../aerospace/aerospace.toml;
};
};
}