summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2021-05-07 23:58:55 +0200
committerstuebinm2021-05-08 00:00:33 +0200
commit2b83a3f6b808cce5057a96e3911bf17ef4e0b68e (patch)
tree22084be32f696bdfa620a518d05a9675b0ca76e1
parent8bb7cbacc2a5a714f940d1cd5aee4d843f40b707 (diff)
nixos zoom iso: some comments on what this is
-rw-r--r--nixos-iso/zoom-iso.nix23
1 files changed, 19 insertions, 4 deletions
diff --git a/nixos-iso/zoom-iso.nix b/nixos-iso/zoom-iso.nix
index 28a44a5..74b1e8d 100644
--- a/nixos-iso/zoom-iso.nix
+++ b/nixos-iso/zoom-iso.nix
@@ -1,21 +1,36 @@
+# This generates a NixOS-based ISO image for use in situations
+# when a zoom-based meeting is unavoidable.
+#
+# Build it with:
+# nix-build zoom-iso.nix
+# Then use `dd` or similar to push it onto a usb flash drive and
+# boot from it (assumes a x86-64 system).
+#
+# It uses the gnome shell, since I'm familiar with it and zoom
+# likes throwing lots of windows around that irritate most tiling
+# window managers I've tried.
+
+{pkgPath ? <nixpkgs>, ...}:
let
config = { config, lib, pkgs, ... }: {
imports = [
- (<nixpkgs> + "/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix")
+ ("${pkgPath}/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix")
];
environment.systemPackages = with pkgs; [
+ # as fallback for the zoom app
chromium
+ # the zoom app
zoom-us
# for censoring screenshots of meetings when
# screensharing doesn't work.
gimp
- # generally useful utilities
+ # generally useful utilities if things break
inetutils
dnsutils
htop iftop
- # for gnome
+ # useful if gnome is weird
gnome3.gnome-tweaks
];
@@ -32,7 +47,7 @@ let
nixpkgs.config.allowUnfree = true;
};
- nixlib = import (<nixpkgs> + "/nixos/default.nix") {
+ nixlib = import ("${pkgPath}/nixos/default.nix") {
configuration = config;
};
in nixlib.config.system.build.isoImage