Skip to content

Commit 7af1e1d

Browse files
staaldraadsamrose
authored andcommitted
fix: fmt and go version, hopefully
1 parent 4a3b66c commit 7af1e1d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

nix/overlays/default.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@
5656
# place the gatekeeper module in the expected libpam location
5757
gatekeeper = self.inputs.gatekeeper.packages.${final.system}.default;
5858
linux-pam = prev.linux-pam.overrideAttrs (old: {
59-
postInstall = (old.postInstall or "") + ''
60-
mkdir -p $out/lib/security
61-
cp ${final.gatekeeper}/lib/security/*.so $out/lib/security/
62-
'';
59+
postInstall =
60+
(old.postInstall or "")
61+
+ ''
62+
mkdir -p $out/lib/security
63+
cp ${final.gatekeeper}/lib/security/*.so $out/lib/security/
64+
'';
6365
});
6466
};
6567
}

nix/packages/gatekeeper.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{ inputs, ... }:
22
{
33
perSystem =
4-
{ system, pkgs, ... }:
4+
{ system, ... }:
55
let
6-
go124 = inputs.nixpkgs-go124.legacyPackages.${pkgs.system}.go_1_24;
6+
go124 = inputs.nixpkgs-go124.legacyPackages.${system}.go_1_24;
77
in
88
{
99
packages.gatekeeper = inputs.gatekeeper.lib.${system}.makeGatekeeper { go = go124; };

0 commit comments

Comments
 (0)