content_atlanticaweb.fr/posts/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;
  };
}