yep, more dotfiles

refactor: remove broken `createFragment`

Changed files
+1 -10
lib
+1 -10
lib/default.nix
···
# This flake library is available to modules via the `llib` arg
-
pkgs: with pkgs.lib; {
colorSchemes = import ./colorSchemes.nix;
-
-
createFragment = name: config: {
-
options."${name}".enable = mkOption {
-
description = "Whether to enable `${name}` fragment";
-
type = types.bool;
-
};
-
-
config = mkIf true config;
-
};
}
···
# This flake library is available to modules via the `llib` arg
+
pkgs: {
colorSchemes = import ./colorSchemes.nix;
}