refactor(flake): rename flake.in.nix to outputs.nix
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-08-05 20:51:11 -04:00
parent 087dd2af15
commit c5c1dfe63b
3 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -339,5 +339,5 @@
type = "github";
};
};
outputs = inputs: inputs.flakegen ./flake.in.nix inputs;
outputs = inputs: inputs.flakegen ./outputs.nix inputs;
}