git.delta.rocks / jrsonnet / refs/commits / 3627c6c6df00

difftreelog

source

modules/nixos/meta.nix727 Bsourcehistory
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  # Version of environment (fleet scripts such as rollback) already installed on the host16  config = {17    environment.etc.FLEET_HOST.text = "1";1819    # Flake/nix command support is assumed by fleet, lets add it here to avoid potential problems.20    nix.settings.experimental-features = [21      "nix-command"22      "flakes"23    ];24  };25}