fixed formatting

This commit is contained in:
Fishandchips321 2026-02-28 20:03:22 +00:00
parent 7ec36e8a2b
commit d8dd32193d
15 changed files with 167 additions and 76 deletions

View file

@ -1,19 +1,19 @@
{ config, pkgs, ...}:
{ config, pkgs, ... }:
{
imports = [
../../all-modules.nix
./hardware-configuration.nix
];
imports = [
../../all-modules.nix
./hardware-configuration.nix
];
users.users.riley = {
isNormalUser = true;
extraGroups = ["wheel"];
};
users.users.riley = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
networking.hostName = "vm";
modules.graphical = {
modules.graphical = {
enable = true;
waybar = true;
quickshell = true;
@ -21,5 +21,5 @@
modules.yazi.enable = true;
system.stateVersion = "25.11";
}
system.stateVersion = "25.11";
}

View file

@ -1,19 +1,29 @@
{ config, lib, pkgs, modulesPath, ...}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [];
boot.extraModulePackages = [];
boot.initrd.availableKernelModules = [
"ahci"
"xhci_pci"
"virtio_pci"
"sr_mod"
"virtio_blk"
];
boot.initrd.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/ed56e12e-55cc-42e0-b94f-9a6d6bb2bdad";
fsType = "ext4";
};
swapDevices = [];
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}
}