mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-12 20:11:06 +01:00
7 lines
245 B
Nix
7 lines
245 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
screen-locker-basic-configuration = ./basic-configuration.nix;
|
|
screen-locker-no-xautolock = ./no-xautolock.nix;
|
|
screen-locker-moved-options = ./moved-options.nix;
|
|
}
|