mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
b8ac2fce89
Signed-off-by: Magic_RB <magic_rb@redalder.org>
31 lines
686 B
Nix
31 lines
686 B
Nix
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.magic_rb.flakes;
|
|
in {
|
|
options.magic_rb.flakes = {
|
|
enable = mkEnableOption "Enable flake support";
|
|
nixMaster = mkEnableOption "Whether to enable Nix master for dwarffs.";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
nixpkgs.overlays = mkIf cfg.nixMaster [config.magic_rb.pins.nix.overlay];
|
|
|
|
nix = {
|
|
package =
|
|
if !cfg.nixMaster
|
|
then pkgs.nixVersions.stable
|
|
else pkgs.nix;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
};
|
|
}
|