summaryrefslogtreecommitdiff
path: root/modules/examples/ofborg.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/examples/ofborg.nix')
-rw-r--r--modules/examples/ofborg.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/examples/ofborg.nix b/modules/examples/ofborg.nix
deleted file mode 100644
index 1054c57..0000000
--- a/modules/examples/ofborg.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-{
- # Logs are enabled by default.
- # $ tail -f /var/log/ofborg.log
- services.ofborg.enable = true;
- # services.ofborg.configFile = "/var/lib/ofborg/config.json";
-
- # $ nix-channel --add https://github.com/NixOS/ofborg/archive/released.tar.gz ofborg
- # $ nix-channel --update
- services.ofborg.package = (import <ofborg> {}).ofborg.rs;
-
- # Keep nix-daemon updated.
- services.nix-daemon.enable = true;
-
- nix.gc.automatic = true;
- nix.gc.options = "--max-freed $((25 * 1024**3 - 1024 * $(df -P -k /nix/store | tail -n 1 | awk '{ print $4 }')))";
-
- # Manage user for ofborg, this enables creating/deleting users
- # depending on what modules are enabled.
- users.knownGroups = [ "ofborg" ];
- users.knownUsers = [ "ofborg" ];
-
- # Used for backwards compatibility, please read the changelog before changing.
- # $ darwin-rebuild changelog
- system.stateVersion = 4;
-}