diff options
Diffstat (limited to '')
-rw-r--r-- | nixos-iso/zoom-iso.nix | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/nixos-iso/zoom-iso.nix b/nixos-iso/zoom-iso.nix new file mode 100644 index 0000000..28a44a5 --- /dev/null +++ b/nixos-iso/zoom-iso.nix @@ -0,0 +1,38 @@ + +let + config = { config, lib, pkgs, ... }: { + imports = [ + (<nixpkgs> + "/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix") + ]; + + environment.systemPackages = with pkgs; [ + chromium + zoom-us + # for censoring screenshots of meetings when + # screensharing doesn't work. + gimp + # generally useful utilities + inetutils + dnsutils + htop iftop + # for gnome + gnome3.gnome-tweaks + ]; + + # Select internationalisation properties. + i18n.defaultLocale = "de_DE.UTF-8"; + console = { + font = "Lat2-Terminus16"; + keyMap = "de"; + }; + + time.timeZone = "Europe/Prague"; + + # necessary for zoom + nixpkgs.config.allowUnfree = true; + + }; + nixlib = import (<nixpkgs> + "/nixos/default.nix") { + configuration = config; + }; +in nixlib.config.system.build.isoImage |