treewide: remove with lib (#6735)

Continuation of `with lib;` cleanup.
This commit is contained in:
Austin Horstman 2025-03-31 22:32:16 -05:00 committed by GitHub
parent ccd7df836e
commit 0b491b460f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
200 changed files with 2421 additions and 2817 deletions

View file

@ -1,27 +1,24 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.piston-cli;
yamlFormat = pkgs.formats.yaml { };
in {
meta.maintainers = with maintainers; [ ethancedwards8 ];
meta.maintainers = with lib.maintainers; [ ethancedwards8 ];
options.programs.piston-cli = {
enable = mkEnableOption "piston-cli, code runner";
enable = lib.mkEnableOption "piston-cli, code runner";
package = mkOption {
type = types.package;
package = lib.mkOption {
type = lib.types.package;
default = pkgs.piston-cli;
defaultText = literalExpression "pkgs.piston-cli";
defaultText = lib.literalExpression "pkgs.piston-cli";
description = "The piston-cli package to use.";
};
settings = mkOption {
settings = lib.mkOption {
type = yamlFormat.type;
default = { };
example = literalExpression ''
example = lib.literalExpression ''
{
theme = "emacs";
box_style = "MINIMAL_DOUBLE_HEAD";
@ -36,10 +33,10 @@ in {
};
};
config = mkIf cfg.enable {
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
xdg.configFile."piston-cli/config.yml" = mkIf (cfg.settings != { }) {
xdg.configFile."piston-cli/config.yml" = lib.mkIf (cfg.settings != { }) {
source = yamlFormat.generate "config.yml" cfg.settings;
};
};