initial commit

This commit is contained in:
2026-03-22 15:33:52 -05:00
commit f594fc4a30
5 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# 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 = [ ];
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/4d415067-6602-4b22-adfd-eed9fa938650";
fsType = "ext4";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/f59b08da-8c49-406c-87db-45531a32dd6e"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
virtualisation.virtualbox.guest.enable = true;
}