Added various things, returned Aphelion back to functional state now

with zfs

Note: this is probably the first commit with coq-nvim working again,
don't remove uder any circumstances
This commit is contained in:
yaroslav
2025-07-27 16:18:35 +03:00
parent 7ceaa8e748
commit 7850408607
13 changed files with 70 additions and 37 deletions
+10 -1
View File
@@ -30,13 +30,20 @@
fsType = "zfs";
};
fileSystems."/nix/persist/home" =
fileSystems."/home" =
{ device = "aphelion-zroot/home";
fsType = "zfs";
};
swapDevices = [ ];
hardware.graphics.extraPackages = with pkgs; [
rocmPackages.clr.icd
];
systemd.tmpfiles.rules = [
"L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}"
];
# 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
@@ -44,6 +51,8 @@
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp12s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp11s0.useDHCP = lib.mkDefault true;
hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;