Nixfiles/nixos/configuration.nix

12 lines
478 B
Nix
Raw Normal View History

2021-06-21 13:27:42 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2023-03-26 19:49:23 +02:00
{
2024-05-13 22:45:35 +02:00
imports = [ ./cachix.nix ];
2021-06-21 13:27:42 +02:00
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
}