mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 15:41:02 +01:00
7 lines
249 B
Nix
7 lines
249 B
Nix
{ lib, pkgs, ... }:
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
swaylock-disabled = import ./disabled.nix;
|
|
swaylock-settings = import ./settings.nix;
|
|
swaylock-enabled = import ./enabled.nix;
|
|
swaylock-legacy = import ./legacy.nix;
|
|
}
|