about summary refs log tree commit diff
path: root/default.nix
blob: afcdc08867c4b90e6b373987ab05769118c1f153 (plain)
1
2
3
4
5
6
7
8
9
10
{ inputs, lib, ... }:
with lib;
with lib.my;
{
  imports = [
    inputs.impermanence.nixosModules.impermanence
  ] ++ mapModulesRec' (toString ./modules) import;

  networking.useDHCP = mkDefault false;
}