20 Commits

Author SHA1 Message Date
shobu
406be9b81a store path to docker exec and correct key in gitea runner conf
Some checks failed
/ perform flake analysis (push) Successful in 1m18s
/ build hive configuration (push) Failing after 1m15s
2025-12-24 17:56:00 +01:00
shobu
45300e7a21 Revert "add bookstack configuration"
This reverts commit 009dc9373f.
2025-12-24 17:45:27 +01:00
shobu
009dc9373f add bookstack configuration 2025-12-24 17:43:45 +01:00
shobu
273066c74a complied to after and wanted-by syntax
Some checks failed
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Failing after 8m33s
2025-12-24 17:30:03 +01:00
shobu
d4b315e90e removed network option from oci-container
Some checks failed
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Failing after 1m6s
2025-12-24 17:26:31 +01:00
shobu
527a17a169 bind mount local nix store to containers
Some checks failed
/ perform flake analysis (push) Successful in 44s
/ build hive configuration (push) Failing after 1m0s
2025-12-24 17:21:03 +01:00
Awen Lelu
77b1bf9249 systemd unit to create a network for transmission
Some checks failed
/ perform flake analysis (push) Successful in 41s
/ build hive configuration (push) Failing after 57s
2025-12-20 13:42:53 +01:00
Awen Lelu
1e58fbe5f4 use service:gluetune as network parameter
All checks were successful
/ perform flake analysis (push) Successful in 1m20s
/ build hive configuration (push) Successful in 8m23s
2025-12-20 11:06:23 +01:00
shobu
f06e325736 add copyparty to starr group
All checks were successful
/ perform flake analysis (push) Successful in 1m24s
/ build hive configuration (push) Successful in 9m9s
mount nix store in runner container
2025-12-17 17:51:34 +01:00
Awen Lelu
8ee5550803 added lan option to copyparty
All checks were successful
/ perform flake analysis (push) Successful in 31s
/ build hive configuration (push) Successful in 8m8s
2025-12-05 13:24:35 +01:00
Awen Lelu
db23c300fe removed ollama and copyparty setup for nginx
All checks were successful
/ perform flake analysis (push) Successful in 47s
/ build hive configuration (push) Successful in 8m13s
2025-12-05 13:13:45 +01:00
Awen Lelu
24954e5367 added ollama service
Some checks failed
/ perform flake analysis (push) Successful in 32s
/ build hive configuration (push) Failing after 1h10m10s
2025-11-21 21:15:33 +01:00
Awen Lelu
1a80911b3f added ollama service
Some checks are pending
/ perform flake analysis (push) Successful in 35s
/ build hive configuration (push) Has started running
2025-11-21 21:04:05 +01:00
Awen Lelu
ddf12655bc use 390 serie of driver
Some checks are pending
/ perform flake analysis (push) Successful in 33s
/ build hive configuration (push) Has started running
2025-11-21 20:25:53 +01:00
Awen Lelu
e5207d10ab accept nvidia term of usage
All checks were successful
/ perform flake analysis (push) Successful in 33s
/ build hive configuration (push) Successful in 11m19s
2025-11-21 19:39:48 +01:00
Awen Lelu
2f4c425c50 use legacy nvidia drivers
Some checks failed
/ perform flake analysis (push) Successful in 32s
/ build hive configuration (push) Failing after 1m12s
2025-11-21 19:31:10 +01:00
Awen Lelu
70d25c574d add nvidia drivers to sin
All checks were successful
/ perform flake analysis (push) Successful in 1m20s
/ build hive configuration (push) Successful in 13m6s
2025-11-21 18:47:16 +01:00
Awen Lelu
9a9cc67b1c remove caching
All checks were successful
/ perform flake analysis (push) Successful in 32s
/ build hive configuration (push) Successful in 8m15s
2025-11-15 00:34:07 +01:00
Awen Lelu
0266841088 edit cache settings
Some checks failed
/ perform flake analysis (push) Successful in 38s
/ build hive configuration (push) Failing after 44s
2025-11-14 18:36:19 +01:00
7bdb31c46c Merge pull request 'add gitea runner configuration' (#1) from test-deploy into master
All checks were successful
/ perform flake analysis (push) Successful in 32s
/ build hive configuration (push) Successful in 7m49s
Reviewed-on: #1
2025-11-12 16:50:47 +01:00
7 changed files with 231 additions and 182 deletions

View File

@@ -11,26 +11,8 @@ jobs:
name: build hive configuration name: build hive configuration
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: cachix/install-nix-action@v31
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- name: Restore and save Nix store
uses: nix-community/cache-nix-action@v6
with:
# restore and save a cache using this key
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }}
# if there's no cache hit, restore a cache by this prefix
restore-prefixes-first-match: nix-${{ runner.os }}-
# collect garbage until the Nix store size (in bytes) is at most this number
# before trying to save a new cache
# 1G = 1073741824
gc-max-store-size-linux: 1G
# do purge caches
purge: true
# purge all versions of the cache
purge-prefixes: nix-${{ runner.os }}-
# created more than this number of seconds ago
purge-created: 60000
purge-primary-key: never
- name: Install SSH key - name: Install SSH key
uses: shimataro/ssh-key-action@v2 uses: shimataro/ssh-key-action@v2
with: with:

View File

@@ -2,6 +2,7 @@
modulesPath, modulesPath,
lib, lib,
pkgs, pkgs,
config,
... ...
}: }:
{ {
@@ -51,18 +52,25 @@
time.timeZone = "Europe/Paris"; time.timeZone = "Europe/Paris";
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
users.users = { users.users = {
zimablade = { zimablade = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKsu+4S+BHmypQTq2IR9y+ihvbF7sXbBznKtIjVAeHJ1 shobu@nixos" ]; openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKsu+4S+BHmypQTq2IR9y+ihvbF7sXbBznKtIjVAeHJ1 shobu@nixos"
];
}; };
shobu = { shobu = {
isNormalUser = true; isNormalUser = true;
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKsu+4S+BHmypQTq2IR9y+ihvbF7sXbBznKtIjVAeHJ1 shobu@nixos" ]; openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKsu+4S+BHmypQTq2IR9y+ihvbF7sXbBznKtIjVAeHJ1 shobu@nixos"
];
}; };
}; };
@@ -71,10 +79,12 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKsu+4S+BHmypQTq2IR9y+ihvbF7sXbBznKtIjVAeHJ1 shobu@nixos" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKsu+4S+BHmypQTq2IR9y+ihvbF7sXbBznKtIjVAeHJ1 shobu@nixos"
]; ];
environment.systemPackages = map lib.lowPrio [ environment.systemPackages =
map lib.lowPrio [
pkgs.curl pkgs.curl
pkgs.gitMinimal pkgs.gitMinimal
] ++ (with pkgs; [ ]
++ (with pkgs; [
helix helix
httpie httpie
btop btop

View File

@@ -1,17 +1,22 @@
{inputs, pkgs, ...}: { { inputs, pkgs, config, ... }:
{
imports = [ inputs.copyparty.nixosModules.default ]; imports = [ inputs.copyparty.nixosModules.default ];
nixpkgs.overlays = [ inputs.copyparty.overlays.default ]; nixpkgs.overlays = [ inputs.copyparty.overlays.default ];
environment.systemPackages = [ pkgs.copyparty ]; environment.systemPackages = [ pkgs.copyparty ];
services.copyparty = { services.copyparty = {
enable = true; enable = true;
group = "starr";
settings = { settings = {
p = [ 8086 ]; p = [ 8086 ];
e2dsa = true; e2dsa = true;
e2ts = true; e2ts = true;
z = true; z = true;
qr = true; qr = true;
xff-hdr = "X-Real-IP";
xff-src = "lan"; xff-src = "lan";
rproxy = 1;
http-only = true; http-only = true;
og = true; og = true;
shr = "/shares"; shr = "/shares";

21
hosts/sin/ollama.nix Normal file
View File

@@ -0,0 +1,21 @@
{ inputs, ... }:
{
# virtualisation.docker = {
# enable = true;
# storageDriver = "btrfs";
# };
services.ollama = {
enable = true;
openFirewall = true;
loadModels = [ ];
acceleration = "cuda";
};
services.open-webui = {
enable = true;
openFirewall = true;
host = "0.0.0.0";
port = 8050;
};
}

View File

@@ -1,4 +1,5 @@
{config, ...}: { { config, nixpkgs, lib, ... }:
{
users.users."starr" = { users.users."starr" = {
extraGroups = [ "transmission" ]; extraGroups = [ "transmission" ];
@@ -14,13 +15,32 @@
transmission.gid = 989; transmission.gid = 989;
}; };
virtualisation.oci-containers = let systemd.services = {
docker-transmission-network = {
after = [
"network.target"
"docker-gluetun.service"
"docker-transmission.service"
];
wantedBy = [
"docker-gluetun.service"
"docker-transmission.service"
];
serviceConfig = {
ExecStart = "${lib.getExe nixpkgs.docker} network create docker-transmission";
};
};
};
virtualisation.oci-containers =
let
peerport = "63369"; peerport = "63369";
in { in
{
backend = "docker"; backend = "docker";
containers = { containers = {
gluetun = { gluetun = {
image = "qmcgaw/gluetun"; image = "qmcgasw/gluetun";
environment = { environment = {
VPN_SERVICE_PROVIDER = "airvpn"; VPN_SERVICE_PROVIDER = "airvpn";
VPN_TYPE = "wireguard"; VPN_TYPE = "wireguard";
@@ -36,6 +56,7 @@
extraOptions = [ extraOptions = [
"--cap-add=NET_ADMIN" "--cap-add=NET_ADMIN"
"--device=/dev/net/tun" "--device=/dev/net/tun"
"--network=docker-transmission"
]; ];
ports = [ ports = [
"13277:13277" "13277:13277"
@@ -56,7 +77,7 @@
"gluetun" "gluetun"
]; ];
extraOptions = [ extraOptions = [
"--network=container:gluetun" "--network=docker-transmission"
]; ];
environment = { environment = {
PUID = toString config.users.users.transmission.uid; PUID = toString config.users.users.transmission.uid;

View File

@@ -3,9 +3,14 @@ let
# striped-front = inputs.striped-front; # striped-front = inputs.striped-front;
sin-address = "192.168.1.14"; sin-address = "192.168.1.14";
in { in
{
networking.firewall.allowedTCPPorts = [ 80 443 8448 ]; networking.firewall.allowedTCPPorts = [
80
443
8448
];
services.nginx = { services.nginx = {
enable = true; enable = true;
@@ -105,6 +110,9 @@ in {
locations."/" = { locations."/" = {
proxyPass = "http://${sin-address}:8086"; proxyPass = "http://${sin-address}:8086";
extraConfig = ''
proxy_set_header X-Real-IP $remote_addr;
'';
}; };
}; };
# "matrix.shobu.fr" = { # "matrix.shobu.fr" = {

View File

@@ -23,6 +23,8 @@
text = '' text = ''
container: container:
network: "host" network: "host"
valid_volumes:
- "/nix/store:/nix/store"
''; '';
}; };
in in