.dotfiles/nix/pkgs/darwin.nix
2025-01-29 18:43:58 +01:00

12 lines
235 B
Nix

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