mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
Compare commits
No commits in common. "b4275952b86d8427b349efa6cfe40df127e39bcc" and "b9590a22e3aa7f6df3c99176e394992d9a2769f6" have entirely different histories.
b4275952b8
...
b9590a22e3
7 changed files with 14 additions and 12 deletions
7
.github/workflows/flake-update.yml
vendored
7
.github/workflows/flake-update.yml
vendored
|
|
@ -1,8 +1,8 @@
|
||||||
name: flake-update
|
name: flake-update
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 5 * * 0'
|
- cron: '0 5 * * 0'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lockfile:
|
lockfile:
|
||||||
|
|
@ -11,10 +11,11 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4.2.2
|
uses: actions/checkout@v4.2.2
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v31
|
uses: DeterminateSystems/nix-installer-action@v17
|
||||||
- name: Update flake lock
|
- name: Update flake lock
|
||||||
run : |
|
run : |
|
||||||
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
git config --local user.name "github-actions[bot]"
|
git config --local user.name "github-actions[bot]"
|
||||||
nix flake update --commit-lock-file
|
nix flake update --commit-lock-file
|
||||||
git push origin HEAD:${{ github.ref_name }}
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
|
||||||
|
|
|
||||||
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -631,11 +631,11 @@
|
||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1755304126,
|
"lastModified": 1754792561,
|
||||||
"narHash": "sha256-nNerR2s9ePsiYiRRQwc5olKKmEZVGC75IxzeLWfV8kk=",
|
"narHash": "sha256-3eiyXsr24s+ayMkC1CGmxm2cF4bSYZE/Ya1njA2Y0CE=",
|
||||||
"owner": "Gerg-L",
|
"owner": "Gerg-L",
|
||||||
"repo": "nvim-flake",
|
"repo": "nvim-flake",
|
||||||
"rev": "831dae4e7ff787fa66bab5cad9688312fe41804e",
|
"rev": "c4145fca8e6763e92a9f17953dfbbe5de85d95a5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
element-desktop
|
element-desktop
|
||||||
vesktop
|
vesktop
|
||||||
gh
|
gh
|
||||||
nixfmt
|
nixfmt-rfc-style
|
||||||
tidal-hifi
|
tidal-hifi
|
||||||
hyperfine
|
hyperfine
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
experimentalZstdSettings = true;
|
recommendedZstdSettings = true;
|
||||||
recommendedOptimisation = true;
|
recommendedOptimisation = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
recommendedTlsSettings = true;
|
recommendedTlsSettings = true;
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ in
|
||||||
services.searx = {
|
services.searx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.searxng;
|
package = pkgs.searxng;
|
||||||
configureUwsgi = true;
|
runInUwsgi = true;
|
||||||
uwsgiConfig = {
|
uwsgiConfig = {
|
||||||
http = link.tuple;
|
http = link.tuple;
|
||||||
disable-logging = true;
|
disable-logging = true;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{ pkgs }:
|
{ pkgs, lib }:
|
||||||
{
|
{
|
||||||
services.libinput.mouse.accelProfile = "flat";
|
services.libinput.mouse.accelProfile = "flat";
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
tty = lib.mkDefault 1;
|
||||||
exportConfiguration = true;
|
exportConfiguration = true;
|
||||||
xkb.layout = "us";
|
xkb.layout = "us";
|
||||||
xautolock.enable = false;
|
xautolock.enable = false;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
writeShellApplication,
|
writeShellApplication,
|
||||||
nixfmt,
|
nixfmt-rfc-style,
|
||||||
deadnix,
|
deadnix,
|
||||||
statix,
|
statix,
|
||||||
fd,
|
fd,
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
writeShellApplication {
|
writeShellApplication {
|
||||||
name = "lint";
|
name = "lint";
|
||||||
runtimeInputs = [
|
runtimeInputs = [
|
||||||
nixfmt
|
nixfmt-rfc-style
|
||||||
deadnix
|
deadnix
|
||||||
statix
|
statix
|
||||||
fd
|
fd
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue