dotfiles/machines/common/wsl/default.nix

13 lines
195 B
Nix
Raw Normal View History

2024-02-11 20:12:32 +01:00
{
lib,
pkgs,
...
}: {
services.kanata.enable = lib.mkForce false;
system = {
build.installBootLoader = lib.mkForce "${pkgs.coreutils}/bin/true";
stateVersion = "23.11";
};
}