nixos-module/system-profile.nix

11 lines
218 B
Nix
Raw Normal View History

2024-03-25 00:14:18 +00:00
{ pkgs, flakey-profile }:
flakey-profile.lib.mkProfile {
inherit pkgs;
paths = with pkgs; [
cacert
nix
];
2024-03-25 00:17:53 +00:00
name = "system-profile";
extraSwitchArgs = [ "--profile" "/nix/var/nix/profiles/default" ];
2024-03-25 00:14:18 +00:00
}