nixos/hosts/vm/default.nix

21 lines
352 B
Nix

{
profile,
...
}:
{
imports = [
../../profiles/${profile}
../../modules/core
../../modules/options
./hardware.nix
./host-packages.nix
];
modules.hyprland.enable = true;
modules.plasma.enable = true;
modules.displayManager.displayManager = "sddm";
modules.zsh.enable = true;
modules.shell.defaultShell = "zsh";
}