mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
13 lines
285 B
Nix
13 lines
285 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.profiles.btrfs = lib.mkEnableOption "is this a host using btrfs";
|
|
config = lib.mkIf config.swarselsystems.profiles.btrfs {
|
|
swarselsystems.modules = {
|
|
optional = {
|
|
btrfs = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|