summaryrefslogtreecommitdiffstats
path: root/lass/1systems/radio
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-09-09 19:42:08 +0200
committermakefu <github@syntax-fehler.de>2023-09-09 19:42:08 +0200
commit29d72c898d674d2c18fc0f4a76b5e623de0c3dfe (patch)
treefc4b0695c986a1cda6f1fbbbcbe716e203c54fa3 /lass/1systems/radio
parente157ffa72856e4378aa23b096b2efff233f3cb3d (diff)
parent083229d0211096daec08673f743ccc45b1d8a0ac (diff)
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/1systems/radio')
-rw-r--r--lass/1systems/radio/config.nix24
-rw-r--r--lass/1systems/radio/physical.nix7
-rw-r--r--lass/1systems/radio/source.nix6
3 files changed, 0 insertions, 37 deletions
diff --git a/lass/1systems/radio/config.nix b/lass/1systems/radio/config.nix
deleted file mode 100644
index 00e9bd3fe..000000000
--- a/lass/1systems/radio/config.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-with import <stockholm/lib>;
-{ config, lib, pkgs, ... }:
-{
- imports = [
- <stockholm/lass>
- <stockholm/lass/2configs>
- <stockholm/lass/2configs/retiolum.nix>
-
- <stockholm/lass/2configs/syncthing.nix>
- <stockholm/lass/2configs/services/radio>
- ];
-
- krebs.build.host = config.krebs.hosts.radio;
-
- security.acme = {
- acceptTerms = true;
- defaults.email = "acme@lassul.us";
- };
-
- krebs.sync-containers3.inContainer = {
- enable = true;
- pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOvPKdbVwMEFCDMyNAzR8NdVjTbQL2G+03Xomxn6KKFt";
- };
-}
diff --git a/lass/1systems/radio/physical.nix b/lass/1systems/radio/physical.nix
deleted file mode 100644
index 8577daf34..000000000
--- a/lass/1systems/radio/physical.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- imports = [
- ./config.nix
- ];
- boot.isContainer = true;
- networking.useDHCP = true;
-}
diff --git a/lass/1systems/radio/source.nix b/lass/1systems/radio/source.nix
deleted file mode 100644
index 4acdb0c26..000000000
--- a/lass/1systems/radio/source.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{ lib, pkgs, test, ... }: let
- npkgs = lib.importJSON ../../../krebs/nixpkgs-unstable.json;
-in if test then {} else {
- nixpkgs.git.ref = lib.mkForce npkgs.rev;
- nixpkgs-unstable = lib.mkForce { file = "/var/empty"; };
-}