From 483e58dfd18ebf118c98db15a968e44f43ab45b1 Mon Sep 17 00:00:00 2001 From: Agahnim Date: Wed, 29 Apr 2026 22:28:26 +0200 Subject: [PATCH] update Readme installation instructions for Nix --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 977891e..9bfb594 100644 --- a/README.md +++ b/README.md @@ -82,10 +82,11 @@ npins add github Novattz creamlinux-installer --branch main ```nix let sources = import ./npins; - creamlinux = pkgs.callPackage sources.creamlinux-installer {}; in { - environment.systemPackages = [ creamlinux ]; + environment.systemPackages = [ + (pkgs.callPackage "${sources.creamlinux-installer}/default.nix" {}) + ]; } ``` Those are the recommended methods to add creamlinux-installer to your environment. However, you could also add it as an input of your flake, like so: