12 lines
385 B
Nix
12 lines
385 B
Nix
{ inputs, config, lib, pkgs, ... }:
|
|
{
|
|
home.file = {
|
|
# Home nix config.
|
|
".config/nixpkgs/config.nix".text = "{ allowUnfree = true; }";
|
|
".local/share/pandoc/templates/default.latex".source = "${inputs.pandoc-latex-template}/eisvogel.tex";
|
|
|
|
# empty zshrc to stop zsh-newuser-install from running
|
|
".zshrc".text = "";
|
|
|
|
};
|
|
}
|