diff options
author | Ben Sima <ben@bsima.me> | 2022-07-18 22:09:58 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-19 09:22:58 -0400 |
commit | bc9e5b0ea863a17537987faa5a72b00efc7767d1 (patch) | |
tree | a22df5a00c29f5612a5f6885b9e6bb9a7a56d420 /Hero/Prod.nix | |
parent | f034ad709ba0de5a2e5ec6be47523f595e381d7a (diff) |
Upgrade nixpkgs, ghc923
I ended up deleting miso, and consequently all files under Hero/ and Miso/,
because I couldn't get miso to build with GHC 9.2.
Other things:
- Niv has been wrapped by Biz/Bild/Deps.hs, so I can extend it to my liking.
- Apply-refact is gone because I couldn't get it to build.
- Disabled python stuff.
Diffstat (limited to 'Hero/Prod.nix')
-rw-r--r-- | Hero/Prod.nix | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/Hero/Prod.nix b/Hero/Prod.nix deleted file mode 100644 index 3f2ced7..0000000 --- a/Hero/Prod.nix +++ /dev/null @@ -1,57 +0,0 @@ -{ bild ? import ../Biz/Bild.nix {} -, nixpkgs ? import ../Biz/Bild/Nixpkgs.nix -}: - -# Production server for herocomics.app - -bild.os { - imports = [ - ../Biz/OsBase.nix - ../Biz/Packages.nix - ../Biz/Users.nix - ./Service.nix - ]; - networking.hostName = "prod-herocomics"; - networking.domain = "herocomics.app"; - boot.loader.grub.device = "/dev/vda"; - fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; - networking = { - firewall.allowedTCPPorts = [ 22 80 443 ]; - nameservers = [ - "67.207.67.2" - "67.207.67.3" - ]; - defaultGateway = "138.68.40.1"; - defaultGateway6 = ""; - dhcpcd.enable = false; - usePredictableInterfaceNames = nixpkgs.lib.mkForce true; - interfaces = { - eth0 = { - ipv4.addresses = [ - { address="138.68.40.97"; prefixLength=21; } - { address="10.46.0.5"; prefixLength=16; } - ]; - ipv6.addresses = [ - { address="fe80::b063:c4ff:fee5:d636"; prefixLength=64; } - ]; - ipv4.routes = [ { address = "138.68.40.1"; prefixLength = 32; } ]; - ipv6.routes = [ { address = ""; prefixLength = 32; } ]; - }; - - }; - }; - - services = { - herocomics = { - enable = true; - port = 3000; - host = bild.ghc ./Host.hs; - node = bild.ghcjs ./Node.hs; - keep = "/var/lib/hero"; - }; - - udev.extraRules = '' - ATTR{address}=="b2:63:c4:e5:d6:36", NAME="eth0" - ''; - }; -} |