-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workflow, add vscode config for keyring
- Loading branch information
1 parent
1b31c97
commit 0b391ff
Showing
7 changed files
with
64 additions
and
16 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/check.yml → .github/workflows/check-flake.yml
This file contains 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Check | ||
name: check-flake | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
|
This file contains 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,21 @@ | ||
name: update-flake-lock | ||
on: | ||
workflow_dispatch: # allows manual triggering | ||
schedule: | ||
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00 | ||
push: | ||
paths: | ||
- 'flake.nix' | ||
jobs: | ||
lockfile: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install Nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
extra_nix_config: | | ||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | ||
- name: Update flake.lock | ||
uses: DeterminateSystems/update-flake-lock@v21 |
This file contains 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,22 @@ | ||
// This configuration file allows you to pass permanent command line arguments to VS Code. | ||
// Only a subset of arguments is currently supported to reduce the likelihood of breaking | ||
// the installation. | ||
// | ||
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT | ||
// | ||
// NOTE: Changing this file requires a restart of VS Code. | ||
{ | ||
// Use software rendering instead of hardware accelerated rendering. | ||
// This can help in cases where you see rendering issues in VS Code. | ||
// "disable-hardware-acceleration": true, | ||
|
||
// Allows to disable crash reporting. | ||
// Should restart the app if the value is changed. | ||
"enable-crash-reporter": true, | ||
|
||
// Unique id used for correlating crash reports sent from this instance. | ||
// Do not edit this value. | ||
"crash-reporter-id": "0b3302a3-84ab-4ab8-b6d0-3f6fd4d6bcf4", | ||
|
||
"password-store": "gnome" | ||
} |
This file contains 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,8 @@ | ||
# this config file is a wrapper to automatically configure vscode via a config file | ||
{ ... }: | ||
{ | ||
home.file.".vscode/argv.json" = { | ||
source = ./vscode-argv.json; | ||
executable = false; | ||
}; | ||
} |
This file contains 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 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 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