2023-06-29 11:20:13 -06:00
|
|
|
{ config, lib, pkgs, inputs, ... }:
|
2020-11-29 19:09:07 -07:00
|
|
|
|
|
|
|
{
|
2021-07-10 15:34:16 -06:00
|
|
|
imports = [
|
2021-07-11 04:19:34 -06:00
|
|
|
../full.nix
|
2023-07-18 11:39:18 -06:00
|
|
|
../nixified.ai.nix
|
2021-07-10 15:34:16 -06:00
|
|
|
];
|
2020-11-29 19:09:07 -07:00
|
|
|
|
2023-06-29 00:49:50 -06:00
|
|
|
networking.hostName = "ryzen-shine";
|
|
|
|
|
2023-06-13 22:20:08 -06:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
linuxPackages_latest.perf
|
|
|
|
];
|
|
|
|
|
2021-07-11 20:01:54 -06:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
|
2020-11-29 19:09:07 -07:00
|
|
|
networking.interfaces.enp5s0.useDHCP = true;
|
|
|
|
networking.interfaces.wlp4s0.useDHCP = true;
|
|
|
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
|
|
|
boot.initrd.luks.devices."cryptroot".device = "/dev/nvme0n1p5";
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
|
|
|
|
|
|
|
# install nvidia drivers in addition to intel one
|
|
|
|
hardware.opengl.extraPackages = [ pkgs.linuxPackages.nvidia_x11.out ];
|
|
|
|
hardware.opengl.extraPackages32 = [ pkgs.linuxPackages.nvidia_x11.lib32 ];
|
|
|
|
services.xserver = {
|
|
|
|
videoDrivers = [ "nvidia" ];
|
|
|
|
};
|
|
|
|
|
2021-07-18 20:19:06 -06:00
|
|
|
hardware.nvidia.modesetting.enable = true;
|
|
|
|
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
|
2020-11-29 19:09:07 -07:00
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
2023-06-29 00:49:50 -06:00
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/disk/by-uuid/356173ab-d076-43e0-aeb6-6a6829c4402b";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
2020-11-29 19:09:07 -07:00
|
|
|
|
2023-06-29 00:49:50 -06:00
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-uuid/B270-C7E6";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
2022-10-06 19:41:48 -06:00
|
|
|
|
2023-06-29 00:49:50 -06:00
|
|
|
fileSystems."/shared" = {
|
|
|
|
device = "/dev/disk/by-uuid/D4009CE8009CD33A";
|
|
|
|
fsType = "ntfs";
|
|
|
|
options = [ "nofail" ];
|
|
|
|
};
|
2020-11-29 19:09:07 -07:00
|
|
|
|
2023-06-29 00:49:50 -06:00
|
|
|
swapDevices =[
|
|
|
|
{ device = "/dev/disk/by-uuid/f719b44e-295a-4909-9a60-84f87acb7f77"; }
|
|
|
|
];
|
2020-11-29 19:09:07 -07:00
|
|
|
|
2022-10-07 08:43:06 -06:00
|
|
|
# nix.settings.maxJobs = lib.mkDefault 16;
|
2020-11-29 19:09:07 -07:00
|
|
|
# High-DPI console
|
|
|
|
console.font = lib.mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-u28n.psf.gz";
|
|
|
|
|
2021-07-17 23:00:46 -06:00
|
|
|
system.stateVersion = "20.03";
|
2023-07-19 12:43:03 -06:00
|
|
|
|
|
|
|
users.extraUsers.dean.home = "/shared/dean";
|
2020-11-29 19:09:07 -07:00
|
|
|
}
|