summaryrefslogtreecommitdiff
path: root/templates/system-flake/sys/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/system-flake/sys/default.nix')
-rw-r--r--templates/system-flake/sys/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/system-flake/sys/default.nix b/templates/system-flake/sys/default.nix
deleted file mode 100644
index fa0f994..0000000
--- a/templates/system-flake/sys/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{pkgs, ...}: {
- # Let 'nixos-version --json' know about the Git revision
- # of this flake.
- system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
-
- # Network configuration.
- networking.firewall.allowedTCPPorts = [80];
-
- # Enable a web server.
- services.httpd = {
- enable = true;
- adminAddr = "morty@example.org";
- };
-}