diff options
Diffstat (limited to 'snowfall/modules/nixos/apps/moreutils')
| -rw-r--r-- | snowfall/modules/nixos/apps/moreutils/default.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/snowfall/modules/nixos/apps/moreutils/default.nix b/snowfall/modules/nixos/apps/moreutils/default.nix deleted file mode 100644 index 9722c31..0000000 --- a/snowfall/modules/nixos/apps/moreutils/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ options, config, lib, pkgs, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.apps.moreutils; -in { - options.${namespace}.apps.moreutils = with types; { - enable = mkEnableOption "moreutils"; - }; - - config = mkIf cfg.enable { - environment.systemPackages = with pkgs; [ - moreutils - ]; - }; -} |