12 lines
197 B
Nix
12 lines
197 B
Nix
![]() |
{ stdenv, ... }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "pommed-macbook-air";
|
||
|
src = ./configs/macbook-air.conf;
|
||
|
dontUnpack = true;
|
||
|
buildPhase = '''';
|
||
|
installPhase = ''
|
||
|
cat $src > $out
|
||
|
'';
|
||
|
}
|