mirror of
https://github.com/nix-community/home-manager.git
synced 2024-12-15 17:50:53 +00:00
fluxbox: use mkPackageOption instead of mkOption (#3286)
This commit is contained in:
parent
e7be7c4688
commit
a053da0f22
1 changed files with 1 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue