35 lines
554 B
Nix
35 lines
554 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";
|
|
}
|