mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
syntaxes
This commit is contained in:
parent
7f21a95abf
commit
6cfde7d480
2 changed files with 10 additions and 3 deletions
|
@ -24,7 +24,7 @@ let
|
|||
|
||||
# TODO: start using pipes once support lands in nixd
|
||||
# selfPackages = self.packages.${pkgs.system} |> attrValues;
|
||||
selfPackages = (attrValues self.packages.${pkgs.system});
|
||||
selfPackages = attrValues self.packages.${pkgs.system};
|
||||
in
|
||||
{
|
||||
makePackages =
|
||||
|
@ -34,7 +34,7 @@ in
|
|||
# packages from overlays
|
||||
(with pkgs; [
|
||||
swww
|
||||
# nixVersions.git
|
||||
nixVersions.git
|
||||
])
|
||||
++ [
|
||||
(flake.pkgs "roc").full
|
||||
|
|
|
@ -23,7 +23,14 @@ let
|
|||
# hostFiles = host: filter isNixFile (listFilesRecursive (hostPath host));
|
||||
hostFiles = host: host |> hostPath |> listFilesRecursive |> filter isNixFile;
|
||||
|
||||
commonSpecialArgs = {inherit self inputs lib enabled;};
|
||||
commonSpecialArgs = {
|
||||
inherit
|
||||
self
|
||||
inputs
|
||||
lib
|
||||
enabled
|
||||
;
|
||||
};
|
||||
|
||||
mkIso = nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
|
Loading…
Reference in a new issue