mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
30 lines
707 B
Nix
30 lines
707 B
Nix
{pkgs, ...}: {
|
|
imports = [../profiles/linux/gnome.nix];
|
|
|
|
boot.extraModulePackages = [];
|
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod"];
|
|
boot.initrd.kernelModules = [];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
environment.systemPackages = with pkgs; [mesa];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot/efi" = {
|
|
device = "/dev/disk/by-label/BOOT";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
networking.hostName = "zeus-utmvm";
|
|
|
|
services.spice-vdagentd.enable = true;
|
|
|
|
swapDevices = [];
|
|
}
|