dotfiles/logical/frumar.nix

20 lines
353 B
Nix
Raw Normal View History

2016-01-28 02:59:31 +01:00
{ config, pkgs, ... }:
{
2018-03-11 18:28:25 +01:00
imports = [
2018-03-11 19:21:08 +01:00
<yori-nix/physical/fractal.nix>
<yori-nix/roles/server.nix>
2018-03-11 18:28:25 +01:00
];
2016-01-28 02:59:31 +01:00
system.stateVersion = "15.09";
2018-03-11 18:28:25 +01:00
services.nginx.enable = true;
services.yorick = {
public = { enable = true; vhost = "pub.yori.cc"; };
gogs = { enable = true; vhost = "git.yori.cc"; };
quassel.enable = true;
};
2016-04-30 14:03:45 +02:00
2018-03-11 18:28:25 +01:00
}