From 4c196f8e096ad5b937313eb5d50d35fc3aeb8f0b Mon Sep 17 00:00:00 2001 From: Alexandre LUCAZEAU Date: Fri, 14 Jan 2022 21:06:30 +0100 Subject: [PATCH] ADD : un bloc note sur Nixos --- posts/Nixos/bloc_notes.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 posts/Nixos/bloc_notes.md 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; + }; + }