Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Configuration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSS
Libraries
Go
Application
Configuration
Commits
bfbc2141
Verified
Commit
bfbc2141
authored
6 months ago
by
Volker Schukai
Browse files
Options
Downloads
Patches
Plain Diff
chore: add missing file for ci
parent
d936bde0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nix/config/common-packages.nix
+0
-15
0 additions, 15 deletions
nix/config/common-packages.nix
nix/scripts/clean-up.nix
+13
-0
13 additions, 0 deletions
nix/scripts/clean-up.nix
with
13 additions
and
15 deletions
nix/config/common-packages.nix
+
0
−
15
View file @
bfbc2141
...
...
@@ -9,20 +9,14 @@ with pkgs'; let
};
in
[
alejandra
appimage-run
blackbox
blackbox-terminal
colmena
corepack
coreutils-full
curl
d2
dbeaver-bin
delve
deploy-rs
dialog
dive
dolt
drill
eza
fd
...
...
@@ -63,17 +57,9 @@ in [
memcached
netcat
nghttp2
niv
nixfmt
nodejs_22
nodePackages
.
mermaid-cli
npm-check-updates
openssh
opentofu
pandoc-katex
php
php83Packages
.
php-cs-fixer
phpunit
plantuml
procps
ranger
...
...
@@ -84,5 +70,4 @@ in [
vhs
wget
zlib
zlib
]
This diff is collapsed.
Click to expand it.
nix/scripts/clean-up.nix
0 → 100644
+
13
−
0
View file @
bfbc2141
{
pkgs
,
...
}:
pkgs
.
writeShellScriptBin
"clean-up"
''
echo "Cleaning up"
echo "Removing credentials"
${
pkgs
.
git
}
/bin/git config --global --unset credential.helper
if [ -f /root/.docker/config.json ]; then
${
pkgs
.
coreutils
}
/bin/rm /root/.docker/config.json; fi
if [ -f .env-gitlab-ci ]; then
${
pkgs
.
coreutils
}
/bin/rm .env-gitlab-ci; fi
echo "Cleaned up"
''
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment