update flake

This commit is contained in:
Kopatz
2024-06-29 19:37:37 +02:00
parent df1aac5278
commit 12e275bb04
7 changed files with 68 additions and 64 deletions

View File

@@ -1,6 +1,6 @@
{ pkgs, config, lib, ... }: {
{ pkgs, config, lib, modulesPath, ... }: {
imports = [ ./vm-common.nix ];
imports = [ ./vm-common.nix (modulesPath + "/profiles/qemu-guest.nix") ];
age.identityPaths = [ /home/kopatz/.ssh/id_rsa ];
mainUser.layout = "de";
mainUser.variant = "us";
@@ -17,12 +17,18 @@
settings.enable = true;
};
graphical = {
i3.enable = true;
#i3.enable = true;
plasma.enable = true;
lightdm.enable = true;
#lightdm.enable = true;
#sddm.enable = true;
#cosmic.enable = true;
};
};
networking.networkmanager.enable = true;
virtualisation.vmVariant = {
virtualisation.qemu.options = [ "-vga qxl" ];
#[ "-vga none" "-device virtio-gpu-gl-pci" "-display default,gl=on" ];
};
environment.systemPackages = with pkgs; [ firefox ];