punkfairie
5bffc52df8
Switch to nixfmt as when I was adding treesitter injected lang hints, Alejandra was not formatting those comments in a way I liked. Turns out I like the nixfmt style in general better.
12 lines
168 B
Nix
12 lines
168 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
curl
|
|
];
|
|
|
|
xdg.configFile.".curlrc" = {
|
|
enable = true;
|
|
source = ./.curlrc;
|
|
target = ".curlrc";
|
|
};
|
|
}
|