mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): move Nix configuration to root level
This commit is contained in:
8
home/curl/curlrc
Normal file
8
home/curl/curlrc
Normal file
@@ -0,0 +1,8 @@
|
||||
# Disguise as Googlebot
|
||||
# user-agent = "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
|
||||
|
||||
# When following a redirect, automatically set the previous URL as referer.
|
||||
referer = ";auto"
|
||||
|
||||
# Wait 60 seconds before timing out.
|
||||
connect-timeout = 60
|
||||
9
home/curl/default.nix
Normal file
9
home/curl/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.file = {
|
||||
".curlrc" = { source = ./curlrc; };
|
||||
};
|
||||
|
||||
home.packages = [ pkgs.curl ];
|
||||
}
|
||||
Reference in New Issue
Block a user