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/post/Nixos/bloc_notes.md

460 B

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