| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # 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 + "/installer/scan/not-detected.nix")
- ];
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/b00d21c1-7c72-4478-8a78-e5204e24d27c";
- fsType = "btrfs";
- options = [ "subvol=@" ];
- };
- fileSystems."/home" =
- { device = "/dev/disk/by-uuid/b00d21c1-7c72-4478-8a78-e5204e24d27c";
- fsType = "btrfs";
- options = [ "subvol=@home" ];
- };
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/C90B-4ED2";
- fsType = "vfat";
- options = [ "fmask=0077" "dmask=0077" ];
- };
- fileSystems."/nvme" =
- { device = "/dev/disk/by-uuid/aa535a01-d005-4fd2-9e95-3787ce33b6f3";
- fsType = "btrfs";
- options = [ "defaults" "nofail" ];
- };
- fileSystems."/hdd" =
- { device = "/dev/disk/by-uuid/995f3a39-f893-497d-bc2a-c0cb1f4c913c";
- fsType = "ext4";
- options = [ "defaults" "nofail" ];
- };
- swapDevices = [ ];
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
- }
|