nixos-config/modules/nixos/development/default.nix
Charlotte Van Petegem 6a795ac029
Some checks failed
Cachix / build (elendel) (push) Successful in 1m25s
Cachix / build (kholinar) (push) Failing after 1m34s
Cachix / build (marabethia) (push) Failing after 1m12s
Set-up marabethia as a development machine
2025-01-26 13:10:28 +01:00

17 lines
342 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./android
./docker
];
config = lib.mkIf config.chvp.development.enable {
chvp = {
base.zfs.homeLinks = [{ path = "repos"; type = "cache"; }];
development.docker.enable = lib.mkDefault true;
};
boot.kernel.sysctl."fs.inotify.max_user_watches" = 524288;
};
}