nixos-config/systems/vpn/configuration.nix

13 lines
207 B
Nix
Raw Normal View History

2021-12-03 13:22:42 +01:00
{ config, pkgs, ... }:
{
imports =
2021-12-03 13:35:37 +01:00
[
2021-12-03 13:22:42 +01:00
./hardware-configuration.nix
./modules/generic.nix
2021-12-03 17:51:47 +01:00
./modules/headscale.nix
2021-12-03 13:22:42 +01:00
];
system.stateVersion = "21.11";
}
# vim: set et ts=2 sw=2 ai: