This commit is contained in:
Daylin Morgan 2024-08-10 17:26:38 -05:00
parent 7f21a95abf
commit 6cfde7d480
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 10 additions and 3 deletions

View file

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

View file

@ -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";