-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(flake): add i686-linux support and improve code structure
- Add i686-linux to supported systems - Reorganize flake inputs and structure - Simplify parameter naming in applications and applets modules
- Loading branch information
1 parent
324b8d7
commit dcc24e2
Showing
4 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
{ lib, ... }: | ||
lib.extend ( | ||
final: prev: { | ||
cosmic = import ./. { | ||
lib = final; | ||
}; | ||
|
||
cosmic = import ./. { lib = final; }; | ||
types = prev.types // import ./types.nix { lib = final; }; | ||
} | ||
) |