nixos-config/modules/nix/lix.nix

17 lines
225 B
Nix
Raw Normal View History

2024-10-29 06:09:45 +00:00
{
lix-module,
inTester,
2024-10-31 09:10:04 +00:00
config,
pkgs,
2024-10-29 06:09:45 +00:00
...
}: {
imports =
if inTester
then []
else [lix-module.nixosModules.default];
2024-10-31 09:10:04 +00:00
environment.systemPackages = mkIf config.nix.enable [
pkgs.gitMinimal
];
2024-10-29 06:09:45 +00:00
}