diff options
Diffstat (limited to 'Biz/Que.nix')
-rw-r--r-- | Biz/Que.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Biz/Que.nix b/Biz/Que.nix index b94f4d2..103aef0 100644 --- a/Biz/Que.nix +++ b/Biz/Que.nix @@ -1,6 +1,5 @@ -{ bild ? import ./Bild.nix {} -, nixpkgs ? import ./Bild/Nixpkgs.nix -}: +{ nixpkgs ? import ./Bild.nix {} }: +with nixpkgs; # The production server for que.run @@ -17,7 +16,7 @@ bild.os { services.que-server = { enable = true; port = 80; - package = bild.ghc ./Que/Host.hs; + package = bild.run ./Que/Host.hs; }; boot.loader.grub.device = "/dev/vda"; fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; @@ -33,7 +32,7 @@ bild.os { defaultGateway = "157.245.224.1"; defaultGateway6 = "2604:a880:2:d1::1"; dhcpcd.enable = false; - usePredictableInterfaceNames = nixpkgs.lib.mkForce true; + usePredictableInterfaceNames = lib.mkForce true; interfaces = { eth0 = { ipv4.addresses = [ @@ -53,7 +52,7 @@ bild.os { que-website = { enable = true; namespace = "_"; - package = bild.ghc ./Que/Site.hs; + package = bild.run ./Que/Site.hs; }; udev.extraRules = '' |