mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
12 lines
196 B
Nix
12 lines
196 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
environment.systemPackages = [ pkgs.bcache-tools ];
|
||
|
|
||
|
boot.initrd.extraUdevRulesCommands = ''
|
||
|
cp -v ${pkgs.bcache-tools}/lib/udev/rules.d/*.rules $out/
|
||
|
'';
|
||
|
|
||
|
}
|