initial commit

This commit is contained in:
maia 2026-05-30 11:13:18 -03:00
commit 8eb7f9c5fb
Signed by: maia
SSH key fingerprint: SHA256:1pLukFtd8Upio2R+CpHc0Z+DBjdfJskYABVE7Ps349c
8 changed files with 1261 additions and 0 deletions

View file

@ -0,0 +1,48 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [
"xhci_pci"
"ohci_pci"
"ehci_pci"
"virtio_pci"
"ahci"
"usbhid"
"sr_mod"
"virtio_blk"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/1cf3c5d1-86d1-4673-8daf-311b72ef9256";
fsType = "xfs";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/ED98-D623";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}