nixos/xdg.portal.wlr: remove with lib;

This commit is contained in:
Felix Buehler
2024-08-29 23:48:09 +02:00
parent f3fff00d96
commit 352763b440
+6 -9
View File
@@ -1,7 +1,4 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.xdg.portal.wlr;
package = pkgs.xdg-desktop-portal-wlr;
@@ -10,11 +7,11 @@ let
in
{
meta = {
maintainers = with maintainers; [ minijackson ];
maintainers = with lib.maintainers; [ minijackson ];
};
options.xdg.portal.wlr = {
enable = mkEnableOption ''
enable = lib.mkEnableOption ''
desktop portal for wlroots-based desktops.
This will add the `xdg-desktop-portal-wlr` package into
@@ -22,7 +19,7 @@ in
configuration file
'';
settings = mkOption {
settings = lib.mkOption {
description = ''
Configuration for `xdg-desktop-portal-wlr`.
@@ -30,14 +27,14 @@ in
values.
'';
type = types.submodule {
type = lib.types.submodule {
freeformType = settingsFormat.type;
};
default = { };
# Example taken from the manpage
example = literalExpression ''
example = lib.literalExpression ''
{
screencast = {
output_name = "HDMI-A-1";
@@ -52,7 +49,7 @@ in
};
};
config = mkIf cfg.enable {
config = lib.mkIf cfg.enable {
xdg.portal = {
enable = true;
extraPortals = [ package ];