···238239# nixos/movim: format with nixfmt-rfc-style
24043c1654cae47cbf987cb63758c06245fa95c1e3b
000
···238239# nixos/movim: format with nixfmt-rfc-style
24043c1654cae47cbf987cb63758c06245fa95c1e3b
241+242+# nixos/iso-image.nix: nixfmt
243+da9a092c34cef6947d7aee2b134f61df45171631
···1# This module defines a NixOS installation CD that contains GNOME.
23-{ pkgs, ... }:
45{
6 imports = [ ./installation-cd-graphical-calamares.nix ];
78- isoImage.edition = "gnome";
910 services.xserver.desktopManager.gnome = {
11 # Add Firefox and other tools useful for installation to the launcher
···1# This module defines a NixOS installation CD that contains GNOME.
23+{ lib, pkgs, ... }:
45{
6 imports = [ ./installation-cd-graphical-calamares.nix ];
78+ isoImage.edition = lib.mkDefault "gnome";
910 services.xserver.desktopManager.gnome = {
11 # Add Firefox and other tools useful for installation to the launcher
···1# This module defines a NixOS installation CD that contains GNOME.
23-{ ... }:
45{
6 imports = [ ./installation-cd-graphical-base.nix ];
78- isoImage.edition = "gnome";
910 services.xserver.desktopManager.gnome = {
11 # Add Firefox and other tools useful for installation to the launcher
···1# This module defines a NixOS installation CD that contains GNOME.
23+{ lib, ... }:
45{
6 imports = [ ./installation-cd-graphical-base.nix ];
78+ isoImage.edition = lib.mkDefault "gnome";
910 services.xserver.desktopManager.gnome = {
11 # Add Firefox and other tools useful for installation to the launcher
···1# This module defines the software packages included in the "minimal"
2# installation CD. It might be useful elsewhere.
34-{ config, lib, pkgs, ... }:
0000056{
7 # Include some utilities that are useful for installing or repairing
···43 ];
4445 # Include support for various filesystems and tools to create / manipulate them.
46- boot.supportedFilesystems =
47- [ "btrfs" "cifs" "f2fs" "ntfs" "vfat" "xfs" ] ++
48- lib.optional (lib.meta.availableOn pkgs.stdenv.hostPlatform config.boot.zfs.package) "zfs";
00000000004950 # Configure host id for ZFS to work
51 networking.hostId = lib.mkDefault "8425e349";
···1# This module defines the software packages included in the "minimal"
2# installation CD. It might be useful elsewhere.
34+{
5+ config,
6+ lib,
7+ pkgs,
8+ ...
9+}:
1011{
12 # Include some utilities that are useful for installing or repairing
···48 ];
4950 # Include support for various filesystems and tools to create / manipulate them.
51+ boot.supportedFilesystems = lib.mkMerge [
52+ [
53+ "btrfs"
54+ "cifs"
55+ "f2fs"
56+ "ntfs"
57+ "vfat"
58+ "xfs"
59+ ]
60+ (lib.mkIf (lib.meta.availableOn pkgs.stdenv.hostPlatform config.boot.zfs.package) {
61+ zfs = lib.mkDefault true;
62+ })
63+ ];
6465 # Configure host id for ZFS to work
66 networking.hostId = lib.mkDefault "8425e349";
···2 lib,
3 stdenv,
4 fetchurl,
05}:
6stdenv.mkDerivation (finalAttrs: {
7 pname = "ynetd";
···21 install -Dm755 ynetd $out/bin/ynetd
22 runHook postInstall
23 '';
00002425 meta = {
26 description = "Small server for binding programs to TCP ports";
···2 lib,
3 stdenv,
4 fetchurl,
5+ callPackage,
6}:
7stdenv.mkDerivation (finalAttrs: {
8 pname = "ynetd";
···22 install -Dm755 ynetd $out/bin/ynetd
23 runHook postInstall
24 '';
25+26+ # ctf-ynetd releases are based on the last stable ynetd version
27+ # these should be kept in sync when possible
28+ passthru.hardened = callPackage ./hardened.nix { };
2930 meta = {
31 description = "Small server for binding programs to TCP ports";
···939 mariadb-client = hiPrio mariadb.client; #added 2019.07.28
940 maligned = throw "maligned was deprecated upstream in favor of x/tools/go/analysis/passes/fieldalignment"; # Added 20204-08-24
941 manicode = throw "manicode has been renamed to codebuff"; # Added 2024-12-10
0942 marwaita-manjaro = lib.warnOnInstantiate "marwaita-manjaro has been renamed to marwaita-teal" marwaita-teal; # Added 2024-07-08
943 marwaita-peppermint = lib.warnOnInstantiate "marwaita-peppermint has been renamed to marwaita-red" marwaita-red; # Added 2024-07-01
944 marwaita-ubuntu = lib.warnOnInstantiate "marwaita-ubuntu has been renamed to marwaita-orange" marwaita-orange; # Added 2024-07-08
···939 mariadb-client = hiPrio mariadb.client; #added 2019.07.28
940 maligned = throw "maligned was deprecated upstream in favor of x/tools/go/analysis/passes/fieldalignment"; # Added 20204-08-24
941 manicode = throw "manicode has been renamed to codebuff"; # Added 2024-12-10
942+ manta = throw "manta does not support python3, and development has been abandoned upstream"; # Added 2025-03-17
943 marwaita-manjaro = lib.warnOnInstantiate "marwaita-manjaro has been renamed to marwaita-teal" marwaita-teal; # Added 2024-07-08
944 marwaita-peppermint = lib.warnOnInstantiate "marwaita-peppermint has been renamed to marwaita-red" marwaita-red; # Added 2024-07-01
945 marwaita-ubuntu = lib.warnOnInstantiate "marwaita-ubuntu has been renamed to marwaita-orange" marwaita-orange; # Added 2024-07-08