Add system config Split up modules into home and system sets Update Cleanup Move home config Add module attrs Fix empty LUKS device UUID Import local secrets
20 lines
348 B
Nix
20 lines
348 B
Nix
{ stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "infra-keys";
|
|
version = "1";
|
|
|
|
src = ./keys;
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
mv * $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Public keys for my infrastructure";
|
|
license = licenses.publicDomain;
|
|
platforms = platforms.all;
|
|
maintainers = [ "dadada" ];
|
|
};
|
|
}
|