mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Creating a sherlock module for the sherlock launcher. Prefer a file be controlled by a single option and using settings for the main config file. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
7 lines
307 B
Nix
7 lines
307 B
Nix
{ lib, pkgs, ... }:
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
sherlock-default-configuration = ./default-configuration.nix;
|
|
sherlock-basic-configuration = ./basic-configuration.nix;
|
|
sherlock-full-configuration = ./full-configuration.nix;
|
|
sherlock-empty-settings = ./empty-settings.nix;
|
|
}
|