73 lines
1.8 KiB
Nix
Executable file
73 lines
1.8 KiB
Nix
Executable file
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||
];
|
||
|
||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbcore" "sd_mod" ];
|
||
boot.initrd.kernelModules = [];
|
||
boot.kernelModules = [ "kvm-amd" "i2c-dev" ];
|
||
boot.extraModulePackages = [ ];
|
||
boot.kernelParams = [ "mitigations=off" "acpi_enforce_resources=lax" ];
|
||
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
boot.plymouth.enable = true;
|
||
|
||
boot.supportedFilesystems = [ "ntfs" ];
|
||
|
||
networking.useDHCP = lib.mkDefault true;
|
||
|
||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
||
# dlna
|
||
services.minidlna = {
|
||
enable = true;
|
||
announceInterval = 120;
|
||
friendlyName = "PC";
|
||
mediaDirs = [ "A,/data/Music/Slsk" ];
|
||
};
|
||
|
||
services.xserver.videoDrivers = [ "nvidia" ];
|
||
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||
hardware.ckb-next.enable = true;
|
||
environment.systemPackages = with pkgs; [
|
||
ckb-next
|
||
openrgb
|
||
];
|
||
|
||
networking.hostName = "quiver"; # Define your hostname.
|
||
users.users.bolt = {
|
||
isNormalUser = true;
|
||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||
};
|
||
|
||
fileSystems."/" =
|
||
{ device = "/dev/disk/by-uuid/06f59431-d939-4b48-9d91-e23606dd3ce0";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
fileSystems."/home" =
|
||
{ device = "/dev/disk/by-uuid/f063e0c7-8590-4ed4-860c-5ae0c9b66898";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
fileSystems."/boot" =
|
||
{ device = "/dev/disk/by-uuid/5008-1946";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
fileSystems."/data" = {
|
||
device = "/dev/disk/by-uuid/39D4F78C658E8B56";
|
||
fsType = "ntfs";
|
||
options = [ "rw" "uid=1001" "gid=100" ];
|
||
};
|
||
|
||
swapDevices = [ ];
|
||
|
||
networking.firewall = {
|
||
allowedUDPPorts = [ 1900 ];
|
||
allowedTCPPorts = [ 8200 ];
|
||
};
|
||
|
||
}
|