mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 00:20:22 -07:00
flake: Use types.str instead of types.string
types.string is deprecated. Related: https://github.com/NixOS/nixpkgs/pull/66346
This commit is contained in:
parent
c3acee78d0
commit
5cf87c75cd
@ -46,7 +46,7 @@
|
||||
enable = mkEnableOption "flake";
|
||||
prefix = mkOption {
|
||||
default = null;
|
||||
type = nullOr string;
|
||||
type = nullOr str;
|
||||
example = literalExpression "\"unstable\"";
|
||||
description = ''
|
||||
Specify a nested alternative <literal>pkgs</literal> by attrName.
|
||||
@ -54,7 +54,7 @@
|
||||
};
|
||||
compiler = mkOption {
|
||||
default = null;
|
||||
type = nullOr string;
|
||||
type = nullOr str;
|
||||
example = literalExpression "\"ghc922\"";
|
||||
description = ''
|
||||
Which compiler to build xmonad with.
|
||||
|
Loading…
x
Reference in New Issue
Block a user