diff --git a/posts/Nixos/bloc_notes.md b/posts/Nixos/bloc_notes.md new file mode 100644 index 0000000..b74ca11 --- /dev/null +++ b/posts/Nixos/bloc_notes.md @@ -0,0 +1,22 @@ +--- +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; + }; + }