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.
date |
author |
title |
tags |
categories |
draft |
description |
2022-01-12 |
Alexandre LUCAZEAU |
Associer un fichier de configuration à l'installation d'un paquet |
|
|
false |
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;
};
}