Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled
91 lines
2.2 KiB
Nix
91 lines
2.2 KiB
Nix
# 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 = [
|
||
"xhci_pci"
|
||
"ahci"
|
||
"nvme"
|
||
"usbhid"
|
||
"sd_mod"
|
||
];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules = [ "kvm-intel" ];
|
||
boot.kernelParams = [ "nvidia.NV_temporaryFilePath=/var/tmp" ];
|
||
boot.extraModulePackages = [ ];
|
||
boot.extraModprobeConfig = ''
|
||
options nvidia NVreg_PreserveVideoMemoryAllocations=1
|
||
'';
|
||
|
||
fileSystems."/" =
|
||
{ device = "/dev/mapper/luks-f103ab07-586f-4bfe-b8e9-cdee9d504a0a";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
boot.initrd.luks.devices."luks-f103ab07-586f-4bfe-b8e9-cdee9d504a0a".device = "/dev/disk/by-uuid/f103ab07-586f-4bfe-b8e9-cdee9d504a0a";
|
||
|
||
fileSystems."/boot" =
|
||
{ device = "/dev/disk/by-uuid/C9F2-8CD3";
|
||
fsType = "vfat";
|
||
options = [ "fmask=0077" "dmask=0077" ];
|
||
};
|
||
|
||
fileSystems."/data" = {
|
||
device = "/dev/disk/by-uuid/0fa840c5-07ad-46b5-a0e8-0ed958d1bb7a";
|
||
fsType = "ext4";
|
||
options = [
|
||
"defaults"
|
||
"nofail"
|
||
];
|
||
};
|
||
|
||
swapDevices = [
|
||
{
|
||
device = "/swapfile";
|
||
size = 32 * 1024;
|
||
}
|
||
];
|
||
|
||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
hardware.nvidia = {
|
||
modesetting.enable = true;
|
||
powerManagement.enable = true;
|
||
powerManagement.finegrained = false; # 이슈 있으면 비활하기
|
||
|
||
open = false;
|
||
nvidiaSettings = true;
|
||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||
};
|
||
services.xserver.videoDrivers = [ "nvidia" ];
|
||
|
||
hardware.graphics = {
|
||
enable = true;
|
||
enable32Bit = true;
|
||
|
||
extraPackages = with pkgs; [
|
||
libva-vdpau-driver
|
||
libvdpau-va-gl
|
||
vulkan-loader
|
||
nvidia-vaapi-driver
|
||
vulkan-validation-layers
|
||
vulkan-extension-layer
|
||
];
|
||
extraPackages32 = with pkgs.pkgsi686Linux; [
|
||
libva-vdpau-driver
|
||
libvdpau-va-gl
|
||
];
|
||
};
|
||
}
|