aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/default-darwin.nix7
-rw-r--r--modules/default.nix7
-rw-r--r--modules/fcuny-net.nix70
-rw-r--r--modules/home.nix38
-rw-r--r--modules/host-config.nix15
5 files changed, 137 insertions, 0 deletions
diff --git a/modules/default-darwin.nix b/modules/default-darwin.nix
new file mode 100644
index 0000000..b42a079
--- /dev/null
+++ b/modules/default-darwin.nix
@@ -0,0 +1,7 @@
+{ ... }:
+{
+ imports = [
+ ./home.nix
+ ./host-config.nix
+ ];
+}
diff --git a/modules/default.nix b/modules/default.nix
new file mode 100644
index 0000000..b42a079
--- /dev/null
+++ b/modules/default.nix
@@ -0,0 +1,7 @@
+{ ... }:
+{
+ imports = [
+ ./home.nix
+ ./host-config.nix
+ ];
+}
diff --git a/modules/fcuny-net.nix b/modules/fcuny-net.nix
new file mode 100644
index 0000000..eb5bf95
--- /dev/null
+++ b/modules/fcuny-net.nix
@@ -0,0 +1,70 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+
+let
+ cfg = config.services.fcuny-net;
+
+ # Import your site - you'll need to adjust the path relative to this module
+ fcunyNet = import ../../src/fcuny.net { inherit pkgs; };
+in
+{
+ options.services.fcuny-net = {
+ enable = lib.mkEnableOption "fcuny.net static site";
+
+ domain = lib.mkOption {
+ type = lib.types.str;
+ default = "fcuny.net";
+ description = "Domain name for the site";
+ };
+
+ port = lib.mkOption {
+ type = lib.types.port;
+ default = 80;
+ description = "Port to serve the site on";
+ };
+
+ enableSSL = lib.mkOption {
+ type = lib.types.bool;
+ default = false;
+ description = "Enable SSL/TLS with Let's Encrypt";
+ };
+ };
+
+ config = lib.mkIf cfg.enable {
+ services.nginx = {
+ enable = true;
+ virtualHosts.${cfg.domain} = {
+ root = fcunyNet.site;
+
+ # SSL configuration
+ enableACME = cfg.enableSSL;
+ forceSSL = cfg.enableSSL;
+
+ locations."/" = {
+ tryFiles = "$uri $uri/ =404";
+ };
+
+ extraConfig = ''
+ # Cache static assets
+ location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg)$ {
+ expires 1y;
+ add_header Cache-Control "public, immutable";
+ }
+ '';
+ };
+ };
+
+ # Open firewall
+ networking.firewall.allowedTCPPorts = [ cfg.port ] ++ lib.optional cfg.enableSSL 443;
+
+ # ACME/Let's Encrypt setup if SSL is enabled
+ security.acme = lib.mkIf cfg.enableSSL {
+ acceptTerms = true;
+ defaults.email = "franck@fcuny.net";
+ };
+ };
+}
diff --git a/modules/home.nix b/modules/home.nix
new file mode 100644
index 0000000..6b6b518
--- /dev/null
+++ b/modules/home.nix
@@ -0,0 +1,38 @@
+{
+ userProfiles,
+ lib,
+ ...
+}:
+let
+ inherit (lib) mkOption;
+ inherit (lib.types)
+ submodule
+ listOf
+ attrsOf
+ str
+ ;
+in
+{
+ options = {
+ home = mkOption {
+ type = attrsOf (
+ submodule (
+ { name, ... }:
+ {
+ options = {
+ name = mkOption {
+ type = str;
+ default = name;
+ };
+ profiles = mkOption {
+ type = listOf str;
+ apply = map (v: userProfiles.${v});
+ };
+ };
+ }
+ )
+ );
+ default = { };
+ };
+ };
+}
diff --git a/modules/host-config.nix b/modules/host-config.nix
new file mode 100644
index 0000000..b10d85f
--- /dev/null
+++ b/modules/host-config.nix
@@ -0,0 +1,15 @@
+{ lib, ... }:
+let
+ inherit (lib) mkOption;
+ inherit (lib.types)
+ attrs
+ ;
+in
+{
+ options = {
+ adminUser = mkOption {
+ type = attrs;
+ default = { };
+ };
+ };
+}