nixos/xdg.icons: remove with lib;

This commit is contained in:
Felix Buehler 2024-08-27 20:42:50 +02:00
parent 7f5a38f100
commit 1da2c43254

View File

@ -1,14 +1,12 @@
{ config, lib, pkgs, ... }:
with lib;
{
meta = {
maintainers = teams.freedesktop.members;
maintainers = lib.teams.freedesktop.members;
};
options = {
xdg.icons.enable = mkOption {
type = types.bool;
xdg.icons.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = ''
Whether to install files to support the
@ -17,7 +15,7 @@ with lib;
};
};
config = mkIf config.xdg.icons.enable {
config = lib.mkIf config.xdg.icons.enable {
environment.pathsToLink = [
"/share/icons"
"/share/pixmaps"