-
-
Notifications
You must be signed in to change notification settings - Fork 201
Sam/custom pam #1772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
samrose
wants to merge
18
commits into
develop
Choose a base branch
from
sam/custom-pam
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Sam/custom pam #1772
Changes from 13 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
128b262
feat: add gatekeeper
staaldraad 40851fe
test: custom flake
staaldraad b0e5b90
feat: use gatekeeper package from upstream private repo
samrose 3e6a537
chore: add overlay
staaldraad 07162ca
chore: add deploy_key for gk repo
staaldraad 60485e4
fix: fmt and go version, hopefully
staaldraad 5a0dbf1
fix: fmt and go version, hopefully
staaldraad 96d965a
fix: pass go override in overlays
staaldraad c98fbc0
fix: pass go override in overlays
staaldraad 1dfd426
feat: package gatekeeper in this package set
samrose 70206f2
fix: update source of go 1.24 nixpkgs
samrose 5299f9d
Revert "fix: update source of go 1.24 nixpkgs"
samrose d57e9e5
Revert "feat: package gatekeeper in this package set"
samrose 9ca620b
fix: clean up nix flake and lock, drop overlay
samrose 43363e2
chore: install gatekeeper with ansible
staaldraad 64f76c0
fix: smallest typo
staaldraad c095568
Apply suggestion from @hunleyd
staaldraad fdd95c8
fix: syntax error
staaldraad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,9 @@ | |
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs"; | ||
git-hooks.url = "github:cachix/git-hooks.nix"; | ||
git-hooks.inputs.nixpkgs.follows = "nixpkgs"; | ||
nixpkgs-go124.url = "github:Nixos/nixpkgs/d2ac4dfa61fba987a84a0a81555da57ae0b9a2b0"; | ||
nixpkgs-go124.url = "github:Nixos/nixpkgs/3b9f00d7a7bf68acd4c4abb9d43695afb04e03a5"; | ||
gatekeeper.url = "git+ssh://[email protected]/supabase/jit-db-gatekeeper?ref=sam/add-flake-parts&rev=34ba4a222c15b2480b837bbb3076508f36c9296f"; | ||
gatekeeper.inputs.nixpkgs.follows = "nixpkgs"; | ||
}; | ||
|
||
outputs = | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ inputs, ... }: | ||
{ | ||
perSystem = | ||
{ system, ... }: | ||
let | ||
|
||
go124 = inputs.nixpkgs-go124.legacyPackages.${system}.go_1_24; | ||
in | ||
{ | ||
packages.gatekeeper = inputs.gatekeeper.lib.${system}.makeGatekeeper { go = go124; }; | ||
}; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.