mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-10-15 19:37:19 +02:00
treewide: remove 'with lib;'
This commit is contained in:
parent
cf54323dc7
commit
78ae241387
53 changed files with 245 additions and 245 deletions
|
@ -8,11 +8,11 @@ let
|
|||
cfg = config.my.system.fonts;
|
||||
in
|
||||
{
|
||||
options.my.system.fonts = with lib; {
|
||||
enable = mkEnableOption "fonts configuration";
|
||||
options.my.system.fonts = {
|
||||
enable = lib.mkEnableOption "fonts configuration";
|
||||
|
||||
additionalFonts = mkOption {
|
||||
type = types.listOf types.package;
|
||||
additionalFonts = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.package;
|
||||
default = [ ];
|
||||
example = "fira";
|
||||
description = "Which additional fonts should be added as well";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue