This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/hardware-configuration.nix

60 lines
1.8 KiB
Nix
Raw Permalink Normal View History

2022-08-07 16:11:24 +01:00
# 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.
2023-05-10 13:37:18 +01:00
{
2023-10-08 10:51:15 +01:00
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = ["nvme"];
2024-02-13 14:04:39 +00:00
boot.initrd.kernelModules = ["amdgpu"];
2023-10-08 10:51:15 +01:00
boot.kernelModules = ["kvm-amd"];
boot.extraModulePackages = [];
fileSystems."/" = {
2024-03-01 22:46:54 +00:00
device = "/dev/disk/by-uuid/d580b740-a571-4e34-820f-6a641bc0dd65";
fsType = "btrfs";
options = ["compress=zstd" "discard=async"];
2023-10-08 10:51:15 +01:00
};
2024-03-01 22:46:54 +00:00
fileSystems."/boot/efi" = {
2023-12-21 17:33:57 +00:00
device = "/dev/disk/by-uuid/3A8C-A960";
2023-10-08 10:51:15 +01:00
fsType = "vfat";
};
2024-03-01 22:46:54 +00:00
fileSystems."/home" = {
device = "/dev/disk/by-uuid/1e5d64ef-acc9-45cd-b9b6-8706cfac04b8";
fsType = "btrfs";
options = ["compress=zstd" "discard=async"];
2023-10-08 10:51:15 +01:00
};
2024-03-01 22:46:54 +00:00
fileSystems."/mnt/hdd" = {
device = "/dev/disk/by-uuid/ecbbfb05-ada8-4044-81a6-9a280f93802f";
2023-10-08 10:51:15 +01:00
fsType = "xfs";
};
swapDevices = [
{
device = "/var/swapfile";
size = 8 * 1024;
}
];
2022-08-07 16:11:24 +01:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
2023-05-10 13:37:18 +01:00
networking.useDHCP = lib.mkDefault true;
2023-09-24 01:42:00 +01:00
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;
2022-08-07 16:11:24 +01:00
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true;
2023-05-10 13:37:18 +01:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2022-08-07 16:11:24 +01:00
}