Compare commits

..

No commits in common. "78742fdccf45fb1fe9f26eab32e5f76c7bc5de15" and "05196cc93b8980a465d887eb0ebaac287668108d" have entirely different histories.

5 changed files with 28 additions and 23 deletions

View file

@ -14,11 +14,14 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- uses: daylin-bot/actions/setup@main
- run: git checkout -B flake-lock - run: git checkout -B flake-lock
- name: Setup Git Bot
run: |
git --version
git config user.name 'daylin-bot'
git config user.email 'bot@dayl.in'
- uses: DeterminateSystems/nix-installer-action@v12 - uses: DeterminateSystems/nix-installer-action@v12
with: with:
extra-conf: | extra-conf: |
@ -48,9 +51,7 @@ jobs:
--print-build-logs --print-build-logs
- name: Commit Updates - name: Commit Updates
uses: daylin-bot/actions/commit-and-push@main run: git push --set-upstream --force origin flake-lock
with:
push-args: --set-upstream --force origin flake-lock
build-full: build-full:
needs: build-minimal needs: build-minimal

View file

@ -1,5 +1,12 @@
{ enabled, ... }:
{ {
self,
pkgs,
enabled,
...
}:
{
imports = with self.nixosModules; [ restic ];
oizys = { oizys = {
languages = [ languages = [
"nim" "nim"
@ -13,6 +20,12 @@
nix-ld = enabled; nix-ld = enabled;
}; };
environment.systemPackages = with pkgs; [
(writeShellScriptBin "gitea" ''
ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
'')
];
services.restic.backups.gdrive = { services.restic.backups.gdrive = {
# directories created by gitea and soft-serve aren't world readable # directories created by gitea and soft-serve aren't world readable
user = "root"; user = "root";

View file

@ -1,8 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(writeShellScriptBin "gitea" ''
ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
'')
];
}

View file

@ -1,4 +1,8 @@
{ config, enabled, ... }: {
config,
enabled,
...
}:
{ {
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader = { boot.loader = {

View file

@ -8,6 +8,7 @@ let
inherit (builtins) filter; inherit (builtins) filter;
inherit (lib) inherit (lib)
nixosSystem nixosSystem
isNixFile
mkDefaultOizysModule mkDefaultOizysModule
mkOizysModule mkOizysModule
enabled enabled
@ -15,17 +16,12 @@ let
pkgsFromSystem pkgsFromSystem
pkgFromSystem pkgFromSystem
overlayFrom overlayFrom
isNixFile
; ;
inherit (lib.filesystem) listFilesRecursive; inherit (lib.filesystem) listFilesRecursive;
pkgFrom = pkgFromSystem "x86_64-linux"; pkgFrom = pkgFromSystem "x86_64-linux";
pkgsFrom = pkgsFromSystem "x86_64-linux"; pkgsFrom = pkgsFromSystem "x86_64-linux";
hostPath = host: ../. + "/hosts/${host}";
# all nix files not including pkgs.nix
hostFiles = host: filter isNixFile (listFilesRecursive (hostPath host));
mkIso = nixosSystem { mkIso = nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
@ -58,8 +54,7 @@ let
../overlays ../overlays
inputs.lix-module.nixosModules.default inputs.lix-module.nixosModules.default
inputs.hyprland.nixosModules.default inputs.hyprland.nixosModules.default
] ++ (hostFiles hostName); ] ++ filter isNixFile (listFilesRecursive (../. + "/hosts/${hostName}"));
specialArgs = { specialArgs = {
inherit inherit
inputs inputs