nixos-config/systems/x86_64-linux/workvm/default.nix
2024-04-04 19:31:55 +02:00

34 lines
555 B
Nix

{
pkgs,
config,
lib,
...
}:
with lib;
with lib.wyrdgard;
{
imports = [ ./hardware.nix ];
boot.blacklistedKernelModules = [ "hyperv-fb" ];
virtualisation.hypervGuest.videoMode = "1920x1080";
environment.systemPackages = with pkgs; [ ];
environment.variables.EDITOR = "nvim";
environment.variables.SUDOEDITOR = "nvim";
wyrdgard = {
apps = {
vivaldi = enabled;
};
submodules = {
basics = enabled;
graphical-interface = enabled;
socials = enabled;
};
};
system.stateVersion = "23.11";
}