diff options
author | Griffin Smith <root@gws.fyi> | 2020-05-07T14·56-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-05-07T14·56-0400 |
commit | c6963f8cb5a7995d889c6aacfd5e13510c63844c (patch) | |
tree | 48819e5c54dc0f4ac23ed0e5bb831d58f5e08979 /system | |
parent | 1316d4fccd3e946813b824d04b7d277da6e753aa (diff) |
dogfood urbos
Diffstat (limited to 'system')
-rw-r--r-- | system/modules/common.nix | 2 | ||||
-rw-r--r-- | system/modules/urbint.nix | 18 |
2 files changed, 1 insertions, 19 deletions
diff --git a/system/modules/common.nix b/system/modules/common.nix index 3f5023793d0e..d172ff4a45a3 100644 --- a/system/modules/common.nix +++ b/system/modules/common.nix @@ -7,8 +7,8 @@ ./fonts.nix ./emacs.nix ./sound.nix - ./urbint.nix ./kernel.nix + /home/grfn/code/urb/urbos/system ]; boot.loader.systemd-boot.enable = true; diff --git a/system/modules/urbint.nix b/system/modules/urbint.nix deleted file mode 100644 index 4b05175756bc..000000000000 --- a/system/modules/urbint.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ config, pkgs, ... }: -{ - virtualisation.docker.enable = true; - - nix = rec { - binaryCaches = [ "https://nix.urbinternal.com" ]; - trustedBinaryCaches = binaryCaches; - trustedUsers = [ "griffin" ]; - requireSignedBinaryCaches = false; - }; - - services.openvpn.servers.urbint = { - config = '' - config /root/openvpn/urbint.conf - ''; - autoStart = false; - }; -} |