apply nixfmt

This commit is contained in:
Daylin Morgan 2025-01-10 15:40:20 -06:00
parent 5acda7664c
commit 565082fd13
Signed by: daylin
GPG key ID: 950D13E9719334AD
9 changed files with 62 additions and 57 deletions

View file

@ -101,6 +101,7 @@
};
nixConfig = {
extra-substituters = [
"https://attic.dayl.in/oizys"
"https://nixpkgs-wayland.cachix.org"

View file

@ -166,15 +166,14 @@ let
{
hostName,
pkgs,
flake ? flakeFromSystem pkgs.system
flake ? flakeFromSystem pkgs.system,
}:
hostName
|> pathFromHostName
|> (p: "${p}/settings/pkgs")
|> tryReadLinesNoComment
|> map (
line:
if hasPrefix "flake:" line then (line |> removePrefix "flake:" |> flake.pkg) else pkgs.${line}
line: if hasPrefix "flake:" line then (line |> removePrefix "flake:" |> flake.pkg) else pkgs.${line}
);
in

View file

@ -7,7 +7,13 @@
...
}:
let
inherit (lib) mkEnableOption mkOption loadOverlays oizysSettings tryPkgsFromFile;
inherit (lib)
mkEnableOption
mkOption
loadOverlays
oizysSettings
tryPkgsFromFile
;
in
{
imports = with self.nixosModules; [

View file

@ -21,7 +21,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper installShellFiles];
nativeBuildInputs = [
makeWrapper
installShellFiles
];
installPhase = ''
runHook preInstall
@ -43,7 +46,6 @@ stdenvNoCC.mkDerivation (finalAttrs: {
echo 'container_additional_volumes="/nix:/nix"' > $out/share/distrobox/distrobox.conf
'';
postInstall = ''
ls completions/zsh
installShellCompletion --cmd distrbox --zsh completions/zsh/_distrobox

View file

@ -37,5 +37,4 @@ buildNimPackage (finalAttrs: {
license = lib.licenses.bsd3;
mainProgram = "nimble";
};
}
)
})

View file

@ -12,5 +12,4 @@ buildNimPackage( finalAttrs: {
doCheck = false;
lockFile = ./lock.json;
}
)
})

View file

@ -11,5 +11,4 @@ buildNimPackage( finalAttrs: {
doCheck = false;
lockFile = ./lock.json;
}
)
})