Skip to content

Commit

Permalink
Take locker defaults from locker role
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Sep 28, 2024
1 parent 8f5f0fd commit 87acd89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions home/roles/desktop/xserver/xmonad/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ in
locker = {
package = mkOption {
type = types.package;
default = pkgs.i3lock;
default = xCfg.locker.package;
description = "Locker util";
};

lockCmd = mkOption {
type = types.str;
default = "${pkgs.i3lock}/bin/i3lock";
default = xCfg.locker.lockCmd;
description = "Command for locking screen";
};
};
Expand Down

0 comments on commit 87acd89

Please sign in to comment.