mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
fluxbox: use mkPackageOption instead of mkOption (#3286)
This commit is contained in:
@@ -13,12 +13,7 @@ in {
|
||||
xsession.windowManager.fluxbox = {
|
||||
enable = mkEnableOption "Fluxbox window manager";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.fluxbox;
|
||||
defaultText = literalExpression "pkgs.fluxbox";
|
||||
description = "Package to use for running Fluxbox WM.";
|
||||
};
|
||||
package = mkPackageOption pkgs "fluxbox" { };
|
||||
|
||||
init = mkOption {
|
||||
type = types.lines;
|
||||
|
||||
Reference in New Issue
Block a user