From c5c1dfe63b4d3dcaf1cab5b3cb1c6944b16ed2c1 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Mon, 5 Aug 2024 20:51:11 -0400 Subject: [PATCH] refactor(flake): rename flake.in.nix to outputs.nix --- README.md | 2 +- flake.nix | 2 +- flake.in.nix => outputs.nix | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename flake.in.nix => outputs.nix (100%) diff --git a/README.md b/README.md index d74f1310..94a3c6ab 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ sudo ln -sf /home/matt/.nix /etc/nixos ### Flake Inputs To allow use of the full nix language for my inputs, I use [genflake](https://github.com/jorsn/flakegen). -Therefore, the flake I edit is located at `./flake.in.nix`. +Therefore, the flake I edit is located at `./outputs.nix`. I also prefer using a more descriptive format for my inputs like so: diff --git a/flake.nix b/flake.nix index 8558297f..2aaeb149 100644 --- a/flake.nix +++ b/flake.nix @@ -339,5 +339,5 @@ type = "github"; }; }; - outputs = inputs: inputs.flakegen ./flake.in.nix inputs; + outputs = inputs: inputs.flakegen ./outputs.nix inputs; } diff --git a/flake.in.nix b/outputs.nix similarity index 100% rename from flake.in.nix rename to outputs.nix