forked from lix-project/nixos-module
9 lines
122 B
Nix
9 lines
122 B
Nix
|
{ pkgs, flakey-profile }:
|
||
|
flakey-profile.lib.mkProfile {
|
||
|
inherit pkgs;
|
||
|
paths = with pkgs; [
|
||
|
cacert
|
||
|
nix
|
||
|
];
|
||
|
}
|