mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
Remove rec from template
It seems this is an anti-pattern, according to https://nix.dev/anti-patterns/language#rec-expression. So, I suggest to remove it from there. Better not ship anti-patterns on templates, isn't it?
This commit is contained in:
parent
f07f509004
commit
a71ffbe7c5
1 changed files with 2 additions and 2 deletions
|
@ -24,11 +24,11 @@
|
|||
overlays = [ self.overlay ];
|
||||
};
|
||||
in
|
||||
rec {
|
||||
{
|
||||
apps = {
|
||||
myapp = pkgs.myapp;
|
||||
};
|
||||
|
||||
defaultApp = apps.myapp;
|
||||
defaultApp = pkgs.myapp;
|
||||
}));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue