mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 10:10:45 -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
|
# TODO: start using pipes once support lands in nixd
|
||||||
# selfPackages = self.packages.${pkgs.system} |> attrValues;
|
# selfPackages = self.packages.${pkgs.system} |> attrValues;
|
||||||
selfPackages = (attrValues self.packages.${pkgs.system});
|
selfPackages = attrValues self.packages.${pkgs.system};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
makePackages =
|
makePackages =
|
||||||
|
@ -34,7 +34,7 @@ in
|
||||||
# packages from overlays
|
# packages from overlays
|
||||||
(with pkgs; [
|
(with pkgs; [
|
||||||
swww
|
swww
|
||||||
# nixVersions.git
|
nixVersions.git
|
||||||
])
|
])
|
||||||
++ [
|
++ [
|
||||||
(flake.pkgs "roc").full
|
(flake.pkgs "roc").full
|
||||||
|
|
|
@ -23,7 +23,14 @@ let
|
||||||
# hostFiles = host: filter isNixFile (listFilesRecursive (hostPath host));
|
# hostFiles = host: filter isNixFile (listFilesRecursive (hostPath host));
|
||||||
hostFiles = host: host |> hostPath |> listFilesRecursive |> filter isNixFile;
|
hostFiles = host: host |> hostPath |> listFilesRecursive |> filter isNixFile;
|
||||||
|
|
||||||
commonSpecialArgs = {inherit self inputs lib enabled;};
|
commonSpecialArgs = {
|
||||||
|
inherit
|
||||||
|
self
|
||||||
|
inputs
|
||||||
|
lib
|
||||||
|
enabled
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
mkIso = nixosSystem {
|
mkIso = nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
Loading…
Reference in a new issue