1{ lib, ... }:2let3 inherit (lib.modules) mkRemovedOptionModule;4in5{6 imports = [7 (mkRemovedOptionModule [ "tags" ]8 "tags are now defined at the host level, not the nixos system level for fast filtering without evaluating unnecessary hosts."9 )10 (mkRemovedOptionModule [11 "network"12 ] "network is now defined at the host level, not the nixos system level")13 ];1415 16 config = {17 environment.etc.FLEET_HOST.text = "1";1819 20 nix.settings.experimental-features = [21 "nix-command"22 "flakes"23 ];24 };25}