1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-13 02:26:17 +02:00
git.oat.zone--dark-firepit-.../modules/hardware/fs.nix

30 lines
496 B
Nix
Raw Normal View History

2022-01-11 18:44:40 +01:00
{ config, options, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.hardware.fs;
in {
options.modules.hardware.fs = {
enable = mkOption {
type = types.bool;
default = false;
};
ssd.enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable (mkMerge [
{
environment.systemPackages = with pkgs; [
sshfs
];
}
(mkIf cfg.ssd.enable {
services.fstrim.enable = true;
})
]);
}