This repository has been archived on 2025-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
content_atlanticaweb.fr/posts/Nixos/bloc_notes.md

23 lines
460 B
Markdown

---
date: 2022-01-12
author: Alexandre LUCAZEAU
title: Associer un fichier de configuration à l'installation d'un paquet
tags:
- nixos
categories :
- nixos
draft: false
description : "Associer un fichier de configuration à l'installation d'un paquet"
---
# Associer un fichier à un paquet
{ pkgs, ... }:
{
home = {
packages = with pkgs; [ zathura ];
file.".config/zathura/zathurarc".source = ./zathurarc;
};
}