Unverified Commit 81f92fbc authored by Jared Baur's avatar Jared Baur
Browse files

nixos/switchable-system: nixfmt

parent f2cf7657
Loading
Loading
Loading
Loading
+12 −6
Original line number Diff line number Diff line
{ config, lib, pkgs, ... }:
{
  config,
  lib,
  pkgs,
  ...
}:

let

  perlWrapped = pkgs.perl.withPackages (p: with p; [ ConfigIniFiles FileSlurp ]);

  perlWrapped = pkgs.perl.withPackages (
    p: with p; [
      ConfigIniFiles
      FileSlurp
    ]
  );
in

{

  options.system.switch = {
    enable = lib.mkOption {
      type = lib.types.bool;