diff options
author | sefidel <contact@sefidel.net> | 2023-07-25 17:43:07 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-07-25 18:26:26 +0900 |
commit | 543ff5b6b2df05c3c294e9a8272bd40dc8c9fed2 (patch) | |
tree | 830bd70ce70887ac0a1823efe7d4dc020791b998 /modules/services/pubnix.nix | |
parent | 30648c71eddb7dbc13e8d0e771f909be823f1f04 (diff) | |
download | infra-543ff5b6b2df05c3c294e9a8272bd40dc8c9fed2.tar.gz infra-543ff5b6b2df05c3c294e9a8272bd40dc8c9fed2.zip |
feat(modules)!: cleanup unused modules
Diffstat (limited to 'modules/services/pubnix.nix')
-rw-r--r-- | modules/services/pubnix.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/services/pubnix.nix b/modules/services/pubnix.nix deleted file mode 100644 index dfe3d58..0000000 --- a/modules/services/pubnix.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; -let - cfg = config.modules.services.pubnix; -in -{ - options.modules.services.pubnix = { - enable = mkEnableOption "serve pubnix shell"; - }; - - config = mkIf cfg.enable { - nix.gc.automatic = true; - nix.gc.dates = "daily"; - - environment.systemPackages = with pkgs; [ - bsd-finger - ]; - }; -} |