nixpkgs/modules/tasks/lvm.nix
Eelco Dolstra 0280aa2dc4 Remove the lvm job
There is a generator in lvm2 that takes care of this.
2012-08-23 10:23:41 -04:00

16 lines
168 B
Nix

{ config, pkgs, ... }:
{
###### implementation
config = {
environment.systemPackages = [ pkgs.lvm2 ];
services.udev.packages = [ pkgs.lvm2 ];
};
}